main.scss 2.0 KB

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