main.scss 2.0 KB

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