main.scss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. // @import "musare-theme";
  2. @import "colors";
  3. @import "breakpoints";
  4. @import "login";
  5. @import "navbar";
  6. @import "register";
  7. @import "setPassword";
  8. @import "settings";
  9. @import "termsPrivacy";
  10. @import "profile";
  11. @import "team";
  12. @import "home";
  13. @import "station";
  14. @import "overlays";
  15. @import "overlaySearchYouTube";
  16. @import "overlayQueueList";
  17. @import "specific/button";
  18. @import "specific/form";
  19. @import url("https://fonts.googleapis.com/css?family=Roboto:100,400,500,700");
  20. html, body {
  21. margin: 0;
  22. padding: 0;
  23. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  24. min-width: 320px;
  25. text-rendering: optimizeLegibility;
  26. -moz-osx-font-smoothing: grayscale;
  27. -webkit-font-smoothing: antialiased;
  28. background-color: #F5F5F5;
  29. color: $musare_color_primary_gray;
  30. }
  31. * {
  32. padding: 0;
  33. margin: 0;
  34. border: 0;
  35. }
  36. h1, h2, h3, h4, h5, h6 {
  37. font-weight: normal;
  38. }
  39. h1 {
  40. text-align: center;
  41. font-size: 32px;
  42. line-height: 43px;
  43. margin-bottom: 16px;
  44. }
  45. .hidden {
  46. display: none;
  47. }
  48. // Temp Start
  49. .liked {
  50. color: green;
  51. }
  52. .disliked {
  53. color: red;
  54. }
  55. // Temp End
  56. main, #overlays .content {
  57. margin-left: auto;
  58. margin-right: auto;
  59. margin-top: 16px;
  60. width: 296px;
  61. .custom-messages {
  62. border: solid 1px;
  63. padding: 8px;
  64. margin-bottom: 16px;
  65. background-color: $musare_color_white;
  66. &.custom-messages-error {
  67. border-color: $musare_color_primary_red;
  68. color: $musare_color_primary_red;
  69. }
  70. &.custom-messages-info {
  71. border-color: $musare_color_dark_blue;
  72. color: $musare_color_dark_blue;
  73. }
  74. &.custom-messages-success {
  75. border-color: $musare_color_green;
  76. color: $musare_color_green;
  77. }
  78. p {
  79. font-weight: 500;
  80. font-size: 16px;
  81. line-height: 21px;
  82. margin-bottom: 8px;
  83. }
  84. ul {
  85. list-style-position: inside;
  86. li {
  87. font-size: 14px;
  88. line-height: 19px;
  89. }
  90. }
  91. }
  92. a {
  93. color: $musare_color_primary_blue;
  94. text-decoration: none;
  95. transition: .1s ease;
  96. &:hover, &:active {
  97. color: $musare_color_secondary_blue;
  98. }
  99. }
  100. }