main.scss 1.8 KB

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