You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

106 lines
2.2 KiB

2 years ago
  1. // Ref: https://github.com/nuxt-community/vuetify-module#customvariables
  2. //
  3. // The variables you want to modify
  4. // $font-size-root: 20px;
  5. $font-family: "DM Sans";
  6. $body-font-family: "DM Sans";
  7. $heading-font-family: "DM Sans";
  8. $primary-orange: #ee9546;
  9. $primary-light-orange: #f5cda8;
  10. $alert-red: #ef5a5a;
  11. $alert-light-red: #e99e9e;
  12. $Neutrals-600: #232323;
  13. $Neutrals-500: #504f4f;
  14. $Neutrals-400: #9c9c9c;
  15. $Neutrals-300: #cecece;
  16. $Neutrals-200: #e5e5e5;
  17. $Neutrals-100: #f8f8f8;
  18. $Neutrals-0: #fefefe;
  19. .v-application {
  20. font-family: $body-font-family !important;
  21. letter-spacing: 0.02em !important;
  22. .title {
  23. // To pin point specific classes of some components
  24. font-family: $body-font-family, sans-serif !important;
  25. }
  26. .text-h1 {
  27. font-family: $body-font-family !important;
  28. }
  29. .text-h2 {
  30. font-family: $body-font-family !important;
  31. }
  32. .text-h3 {
  33. font-family: $body-font-family !important;
  34. }
  35. .text-h4 {
  36. font-family: $body-font-family !important;
  37. }
  38. .text-h5 {
  39. font-family: $body-font-family !important;
  40. }
  41. .text-h6 {
  42. font-family: $body-font-family !important;
  43. }
  44. .body-1 {
  45. font-size: 24px !important;
  46. font-weight: 500;
  47. line-height: 31px;
  48. color: $Neutrals-500;
  49. }
  50. .body-2 {
  51. font-size: 18px !important;
  52. font-weight: 500;
  53. line-height: 23px;
  54. color: $Neutrals-500;
  55. }
  56. .body-3 {
  57. font-size: 16px !important;
  58. font-weight: 500;
  59. line-height: 21px;
  60. color: $Neutrals-500;
  61. }
  62. .body-4 {
  63. font-size: 14px !important;
  64. font-weight: 500;
  65. line-height: 18px;
  66. color: $Neutrals-500;
  67. }
  68. .body-5 {
  69. font-size: 12px !important;
  70. font-weight: 500;
  71. line-height: 16px;
  72. color: $Neutrals-500;
  73. }
  74. .caption {
  75. font-family: $body-font-family !important;
  76. }
  77. .logo-title {
  78. font-family: "Damion" !important;
  79. }
  80. .v-btn__content {
  81. font-family: "DM Sans" !important;
  82. }
  83. .tablet .container {
  84. max-width: 100% !important;
  85. }
  86. .phone .container {
  87. max-width: 100% !important;
  88. }
  89. .remove-upper {
  90. text-transform: none !important;
  91. }
  92. .v-navigation-drawer--temporary {
  93. z-index: 10001;
  94. }
  95. ::-webkit-scrollbar {
  96. width: 3px;
  97. }
  98. ::-webkit-scrollbar-thumb {
  99. border-radius: 10px;
  100. background-color: #e5e5e5;
  101. }
  102. }