main.scss 1.8 KB

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