main.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. // @import "musare-theme";
  2. @import "colors";
  3. @import "breakpoints";
  4. html, body {
  5. margin: 0;
  6. padding: 0;
  7. font-family: "Segoe UI";
  8. min-width: 320px;
  9. }
  10. * {
  11. padding: 0;
  12. margin: 0;
  13. }
  14. h1, h2, h3, h4, h5, h6 {
  15. font-weight: normal;
  16. }
  17. h1 {
  18. text-shadow: 0 3px 6px $musare_shadow_color;
  19. color: $musare_color_primary_gray;
  20. text-align: center;
  21. }
  22. main {
  23. margin-left: auto;
  24. margin-right: auto;
  25. .custom-messages {
  26. border-style: solid;
  27. &.custom-messages-error {
  28. border-color: $musare_color_primary_red;
  29. color: $musare_color_primary_red;
  30. }
  31. &.custom-messages-info {
  32. border-color: $musare_color_dark_blue;
  33. color: $musare_color_dark_blue;
  34. }
  35. &.custom-messages-success {
  36. border-color: $musare_color_green;
  37. color: $musare_color_green;
  38. }
  39. p {
  40. font-weight: 600;
  41. }
  42. ul {
  43. list-style-position: inside;
  44. }
  45. }
  46. }
  47. @include responsive(smallest) {
  48. h1 {
  49. font-size: 32px;
  50. line-height: 43px;
  51. margin-bottom: 16px;
  52. }
  53. main {
  54. margin-top: 16px;
  55. width: calc(100% - 20px);
  56. .custom-messages {
  57. border-width: 1px;
  58. padding: 8px;
  59. margin-bottom: 12px;
  60. p {
  61. font-size: 16px;
  62. line-height: 21px;
  63. margin-bottom: 8px;
  64. }
  65. ul {
  66. li {
  67. font-size: 14px;
  68. line-height: 19px;
  69. }
  70. }
  71. }
  72. }
  73. }
  74. @include responsive(small) {
  75. h1 {
  76. font-size: 60px;
  77. line-height: 80px;
  78. margin-bottom: 52px; // TODO Check if this shouldn't be 32px
  79. }
  80. main {
  81. margin-top: 32px;
  82. width: calc(100% - 40px);
  83. .custom-messages {
  84. border-width: 2px;
  85. padding: 16px;
  86. margin-bottom: 26px;
  87. p {
  88. font-size: 29px;
  89. line-height: 38px;
  90. margin-bottom: 16px;
  91. }
  92. ul {
  93. li {
  94. font-size: 23px;
  95. line-height: 31px;
  96. }
  97. }
  98. }
  99. }
  100. }
  101. @include responsive(medium) {
  102. h1 {
  103. font-size: 90px;
  104. line-height: 120px;
  105. margin-bottom: 51px; // TODO Check if this shouldn't be 48px
  106. }
  107. main {
  108. margin-top: 48px;
  109. width: calc(100% - 60px);
  110. .custom-messages {
  111. border-width: 2px;
  112. padding: 24px;
  113. margin-bottom: 39px;
  114. p {
  115. font-size: 43px;
  116. line-height: 57px;
  117. margin-bottom: 24px;
  118. }
  119. ul {
  120. li {
  121. font-size: 34px;
  122. line-height: 46px;
  123. }
  124. }
  125. }
  126. }
  127. }
  128. @include responsive(large) {
  129. h1 {
  130. font-size: 48px;
  131. line-height: 64px;
  132. margin-bottom: 32px;
  133. }
  134. main {
  135. margin-top: 32px;
  136. width: 500px;
  137. .custom-messages {
  138. border-width: 2px;
  139. padding: 16px;
  140. margin-bottom: 32px;
  141. p {
  142. font-size: 28px;
  143. line-height: 37px;
  144. margin-bottom: 16px;
  145. }
  146. ul {
  147. li {
  148. font-size: 24px;
  149. line-height: 32px;
  150. }
  151. }
  152. }
  153. }
  154. }
  155. @include responsive(largest) {
  156. main {
  157. width: 800px;
  158. }
  159. }