style.scss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. // Let's first take care of having the customized colors ready.
  2. @import "./_colors.scss";
  3. // Loading screen is the first thing that shows up, let's put it at the top.
  4. div#loading {
  5. position: absolute;
  6. top: 0;
  7. left: 0;
  8. z-index: 100;
  9. height: 100%;
  10. width: 100%;
  11. display: flex;
  12. align-items: center;
  13. justify-content: center;
  14. div.background {
  15. position: absolute;
  16. z-index: -1;
  17. height: 100%;
  18. width: 100%;
  19. top: 0px;
  20. left: 0px;
  21. background: $background;
  22. }
  23. }
  24. // Bulma/Buefy customization
  25. @import "../../../node_modules/bulma/sass/utilities/_all.sass";
  26. $body-size: 14px !default;
  27. $family-primary: 'Nunito', BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  28. $size-normal: 1rem;
  29. @import "../../../node_modules/bulma/bulma.sass";
  30. @import "../../../node_modules/buefy/src/scss/buefy.scss";
  31. /*
  32. .material-icons {
  33. font-family: 'Material Icons';
  34. font-weight: normal;
  35. font-style: normal;
  36. font-size: 24px;
  37. line-height: 1;
  38. letter-spacing: normal;
  39. text-transform: none;
  40. display: inline-block;
  41. white-space: nowrap;
  42. word-wrap: normal;
  43. direction: ltr;
  44. font-feature-settings: "liga";
  45. -webkit-font-feature-settings: 'liga';
  46. -webkit-font-smoothing: antialiased;
  47. }
  48. */
  49. /*
  50. *,
  51. *::before,
  52. *::after {
  53. box-sizing: border-box;
  54. text-rendering: optimizeLegibility;
  55. }
  56. */
  57. html {
  58. // font-size: 100%;
  59. font-size: 14px;
  60. background-color: $background;
  61. }
  62. h4 {
  63. font-size: 2em;
  64. font-weight: 700;
  65. line-height: 1.25em;
  66. }
  67. div.spacer {
  68. &.mt1 { margin-top: 1em; }
  69. &.mt2 { margin-top: 2em; }
  70. &.mt3 { margin-top: 3em; }
  71. &.mt4 { margin-top: 4em; }
  72. &.mt5 { margin-top: 5em; }
  73. &.mt6 { margin-top: 6em; }
  74. &.mt7 { margin-top: 7em; }
  75. }
  76. // Bulma color changes.
  77. .tooltip.is-top.is-primary:before { border-top: 5px solid #20222b; }
  78. .tooltip.is-primary:after { background: #20222b; }
  79. div#drag-overlay {
  80. position: fixed;
  81. top: 0px;
  82. left: 0px;
  83. width: 100%;
  84. height: 100%;
  85. pointer-events: none;
  86. z-index: 100;
  87. div.background {
  88. background: rgba(0, 0, 0, 0.9);
  89. position: absolute;
  90. top: 3%;
  91. left: 3%;
  92. width: 94%;
  93. height: 94%;
  94. border: 2px dashed #fff;
  95. border-radius: 10px;
  96. box-shadow: 0 0 0 4px #ffffff00, 2px 1px 6px 4px rgba(10, 10, 0, 0.5);
  97. }
  98. div.drop {
  99. width: 100%;
  100. color: white;
  101. position: absolute;
  102. height: 100%;
  103. align-items: center;
  104. display: flex;
  105. justify-content: center;
  106. font-size: 2em;
  107. }
  108. }
  109. section input, section a.button {
  110. font-size: 14px !important;
  111. }
  112. section input, section p.control a.button {
  113. border-left: 0px !important;
  114. border-top: 0px !important;
  115. border-right: 0px !important;
  116. border-radius: 0px !important;
  117. box-shadow: 0 0 0 !important;
  118. }
  119. section p.control a.button { margin-left: 10px !important; }
  120. section p.control button {
  121. height: 100%;
  122. font-size: 12px;
  123. }
  124. .switch input[type=checkbox] + .check:before {
  125. background: #fbfbfb;
  126. }
  127. /*
  128. Register and Login forms
  129. */
  130. section#login,
  131. section#register { background-color: $backgroundLight1 !important; }
  132. section#login input,
  133. section#register input,
  134. section#login a.button,
  135. section#register a.button {
  136. font-size: 14px !important;
  137. }
  138. section#login input,
  139. section#register input,
  140. section#login p.control a.button,
  141. section#register p.control a.button {
  142. border-left: 0px !important;
  143. border-top: 0px !important;
  144. border-right: 0px !important;
  145. border-radius: 0px !important;
  146. box-shadow: 0 0 0 !important;
  147. }
  148. section#login p.control a.button,
  149. section#register p.control a.button { margin-left: 10px !important; }
  150. section#login p.control a#loginBtn,
  151. section#register p.control a#loginBtn { border-right: 0px !important; }
  152. section#login p.control a#registerBtn,
  153. section#register p.control a#registerBtn { border-left: 0px !important; }
  154. section#login a.is-text,
  155. section#register a.is-text {
  156. font-size: 1.25em;
  157. line-height: 2.5em;
  158. }
  159. .modal-card-head, .modal-card-foot {
  160. background: $backgroundLight1;
  161. }
  162. .switch {
  163. margin-top: 5px;
  164. }