main.scss 1.9 KB

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