Page.scss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. @import './adaptivefont.scss';
  2. .page {
  3. display: flex;
  4. height: 88vh;
  5. overflow: none;
  6. background-color: #100d23;
  7. &__window {
  8. width: 80%;
  9. height: inherit;
  10. overflow: auto;
  11. }
  12. }
  13. .startpage {
  14. &__ulwrapper {
  15. width: 50%;
  16. margin: 0 auto;
  17. ul {
  18. text-align: start;
  19. small {
  20. color: whitesmoke;
  21. }
  22. }
  23. }
  24. }
  25. .playlist {
  26. background-color: #1e1d45;
  27. height: fit-content;
  28. width: 90%;
  29. margin: 0 auto;
  30. padding: 1% 2%;
  31. &__track {
  32. display: flex;
  33. align-items: center;
  34. background-color: #2a3da941;
  35. margin: 10px 10px 10px -2%;
  36. padding: 2% 0;
  37. color: #83d6f6;
  38. box-shadow: 0 0 5px black;
  39. button {
  40. display: block;
  41. background-color: #1e1d45;
  42. border-style: solid;
  43. @include adaptive-font(20, 20);
  44. //font-size: x-large;
  45. padding: 1%;
  46. margin: 0 5%;
  47. }
  48. small,
  49. strong {
  50. display: block;
  51. }
  52. .artist {
  53. @include adaptive-font(16, 12);
  54. font-weight: 700;
  55. text-align: start;
  56. }
  57. .album {
  58. @include adaptive-font(14, 10);
  59. font-weight: 400;
  60. text-align: start;
  61. }
  62. .title {
  63. @include adaptive-font(16, 13);
  64. //font-size: large;
  65. font-weight: 700;
  66. text-align: start;
  67. }
  68. }
  69. }