app.scss 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. // app global css in SCSS format
  2. html,
  3. body,
  4. #q-app {
  5. font-family: "Montserrat" !important;
  6. font-size: 14px;
  7. }
  8. .h1 {
  9. font-family: "Montserrat";
  10. font-size: 96px;
  11. font-weight: 300;
  12. line-height: 144px;
  13. }
  14. .h2 {
  15. font-family: "Montserrat";
  16. font-size: 60px;
  17. font-weight: 300;
  18. line-height: 90px;
  19. }
  20. .h3 {
  21. font-family: "Montserrat";
  22. font-size: 48px;
  23. font-weight: 400;
  24. line-height: 72px;
  25. }
  26. .h4 {
  27. font-family: "Montserrat";
  28. font-size: 34px;
  29. font-weight: 400;
  30. line-height: 51px;
  31. }
  32. .h5 {
  33. font-family: "Montserrat";
  34. font-size: 24px;
  35. font-weight: 400;
  36. line-height: 36px;
  37. }
  38. .h6 {
  39. font-family: "Montserrat";
  40. font-size: 20px;
  41. font-weight: 500;
  42. line-height: 30px;
  43. letter-spacing: 0.7px;
  44. }
  45. .subtitle-1 {
  46. font-family: "Montserrat";
  47. font-size: 16px;
  48. font-weight: 400;
  49. line-height: 24px;
  50. letter-spacing: 0.15px;
  51. }
  52. .subtitle-2 {
  53. font-family: "Montserrat";
  54. font-size: 14px;
  55. font-weight: 500;
  56. line-height: 21px;
  57. letter-spacing: 0.1px;
  58. text-align: left;
  59. }
  60. .body-1 {
  61. font-family: "Montserrat";
  62. font-size: 16px;
  63. font-weight: 400;
  64. line-height: 24px;
  65. letter-spacing: 0.5px;
  66. }
  67. .body-2 {
  68. font-family: "Montserrat";
  69. font-size: 14px;
  70. font-weight: 400;
  71. line-height: 20px;
  72. letter-spacing: 0.25px;
  73. }
  74. .overline {
  75. font-family: "Montserrat";
  76. font-size: 10px;
  77. font-weight: 400;
  78. line-height: 15px;
  79. letter-spacing: 1.5px;
  80. }
  81. .caption {
  82. font-family: "Montserrat";
  83. font-size: 12px;
  84. font-weight: 400;
  85. line-height: 18px;
  86. letter-spacing: 0.4px;
  87. }
  88. .button {
  89. font-family: "Montserrat";
  90. font-size: 14px;
  91. font-weight: 500;
  92. line-height: 21px;
  93. letter-spacing: 1.25px;
  94. }
  95. .input-disable {
  96. .q-field--outlined .q-field__control::before {
  97. border: 1px solid #565454 !important;
  98. transition: border-color 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  99. }
  100. }
  101. .q-input-border {
  102. .q-field__control::before {
  103. border: 1px solid #565454 !important;
  104. transition: border-color 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  105. }
  106. }
  107. .q-field--labeled .q-field__control,
  108. .q-field--focused .q-field__control {
  109. border-radius: 4px !important;
  110. }
  111. .q-field--outlined.q-field--rounded .q-field__control {
  112. border-radius: 4px;
  113. }
  114. // quasar component overrides
  115. .q-field__control,
  116. .q-item--active,
  117. .q-toggle__inner--truthy {
  118. color: #ED3237 !important;
  119. border-radius: 8px;
  120. }
  121. .q-input-no-border {
  122. .q-field__control,
  123. .q-item--active,
  124. .q-toggle__inner--truthy,
  125. .q-field--labeled .q-field__control,
  126. .q-field--focused .q-field__control,
  127. .q-field--outlined.q-field--rounded .q-field__control {
  128. color: #ED3237 !important;
  129. border-radius: 0px;
  130. }
  131. }
  132. .q-input-remove-all-border {
  133. .q-field__control::before {
  134. border: none !important;
  135. }
  136. }
  137. .select-rounded {
  138. border-radius: 4px;
  139. }
  140. .q-btn {
  141. border-radius: 4px;
  142. }
  143. .q-checkbox__bg {
  144. border-radius: 4px !important;
  145. border: 1px solid #ED3237 !important;
  146. }
  147. .img-gradient {
  148. position: relative;
  149. }
  150. .img-gradient::after {
  151. content: "";
  152. position: absolute;
  153. bottom: 0;
  154. left: 0;
  155. right: 0;
  156. height: 100%; /* A metade inferior da imagem */
  157. background: linear-gradient(0, #090808 20.86%, rgba(0, 0, 0, 0.3) 81.63%);
  158. }
  159. .rounded-full {
  160. border-radius: 50% !important;
  161. }
  162. .q-select__dialog {
  163. background-color: #ffffff !important;
  164. border: 0.4px solid #5b5a5a6e !important;
  165. border-radius: 8px !important;
  166. box-shadow: 0px 1px 2px 0px #00000040 !important;
  167. color: #000000 !important;
  168. }
  169. .q-menu {
  170. background-color: #ffffff;
  171. border: 0.4px solid #5b5a5a6e;
  172. border-radius: 8px !important;
  173. box-shadow: 0px 1px 2px 0px #00000040;
  174. color: #090808 !important;
  175. }
  176. .q-item,
  177. .q-field__append {
  178. color: #090808 !important;
  179. }
  180. .card-size {
  181. width: 100px;
  182. height: 80px;
  183. padding: 8px 16px 8px 16px;
  184. border-radius: 8px;
  185. box-shadow: 0px;
  186. text-transform: capitalize;
  187. }
  188. .q-drawer:has(.detached-container) {
  189. margin: 16px !important;
  190. margin-bottom: 16px !important;
  191. margin-left: 10px !important;
  192. border-radius: 6px !important;
  193. }
  194. .full{
  195. .q-item__section--avatar {
  196. min-width: 32px !important;
  197. }
  198. }