main.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. main {
  45. margin-left: auto;
  46. margin-right: auto;
  47. margin-top: 16px;
  48. width: 296px;
  49. .custom-messages {
  50. border: solid 1px;
  51. padding: 8px;
  52. margin-bottom: 16px;
  53. &.custom-messages-error {
  54. border-color: $musare_color_primary_red;
  55. color: $musare_color_primary_red;
  56. }
  57. &.custom-messages-info {
  58. border-color: $musare_color_dark_blue;
  59. color: $musare_color_dark_blue;
  60. }
  61. &.custom-messages-success {
  62. border-color: $musare_color_green;
  63. color: $musare_color_green;
  64. }
  65. p {
  66. font-weight: 500;
  67. font-size: 16px;
  68. line-height: 21px;
  69. margin-bottom: 8px;
  70. }
  71. ul {
  72. list-style-position: inside;
  73. li {
  74. font-size: 14px;
  75. line-height: 19px;
  76. }
  77. }
  78. }
  79. a {
  80. color: $musare_color_primary_blue;
  81. text-decoration: none;
  82. transition: .1s ease;
  83. &:hover, &:active {
  84. color: $musare_color_secondary_blue;
  85. }
  86. }
  87. }