Page.scss 1.5 KB

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