Page.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .page {
  2. display: flex;
  3. max-height: 89vh;
  4. min-height: 30vh;
  5. overflow: none;
  6. &__window {
  7. width: 80%;
  8. height: inherit;
  9. overflow: auto;
  10. }
  11. }
  12. .startpage {
  13. &__ulwrapper {
  14. width: 50%;
  15. margin: 0 auto;
  16. ul {
  17. text-align: start;
  18. small { color: whitesmoke;}
  19. }
  20. }
  21. }
  22. .playlist {
  23. background-color: #1e1d45;
  24. height: fit-content;
  25. width: 90%;
  26. margin: 0 auto;
  27. padding: 1% 2%;
  28. &__track {
  29. display: flex;
  30. align-items: center;
  31. background-color: #2a3da941;
  32. margin: 10px;
  33. padding: 2% 0;
  34. color: #83d6f6;
  35. box-shadow: 0 0 5px black;
  36. button {
  37. display: block;
  38. background-color: #1e1d45;
  39. border-style: solid;
  40. font-size: x-large;
  41. padding: 1%;
  42. margin: 0 5%;
  43. }
  44. small, strong {
  45. display: block;
  46. }
  47. .artist {font-weight: 700; text-align: start;}
  48. .album {font-weight: 400; text-align: start;}
  49. .title {font-size: large; font-weight: 700; text-align: start;}
  50. }
  51. }