styles.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. /* You can add global styles to this file, and also import other style files */
  2. @import "./assets/scss/variables.scss";
  3. @font-face {
  4. font-family: "Montserrat-Bold";
  5. src: url("./assets/fonts/Montserrat-Bold.ttf") format("truetype");
  6. font-weight: 100;
  7. font-style: normal;
  8. }
  9. @font-face {
  10. font-family: "Montserrat-Regular";
  11. src: url("./assets/fonts/Montserrat-Regular.ttf") format("truetype");
  12. font-weight: 100;
  13. font-style: normal;
  14. }
  15. * {
  16. margin: 0;
  17. padding: 0;
  18. }
  19. html,
  20. body {
  21. height: 100%;
  22. padding: auto;
  23. }
  24. body {
  25. margin: 0;
  26. font-family: "Montserrat-Regular";
  27. // font-family: Roboto, "Helvetica Neue", sans-serif;
  28. // font-family: "Montserrat", sans-serif;
  29. // font-family: "Roboto";
  30. }
  31. .body-en {
  32. direction: ltr;
  33. }
  34. .body-ar {
  35. direction: rtl;
  36. }
  37. .mt-2 {
  38. margin-top: 1rem;
  39. }
  40. .mt-3 {
  41. margin-top: 2rem;
  42. }
  43. .plr-1 {
  44. padding-left: 1rem;
  45. padding-right: 1rem;
  46. }
  47. .plr-0 {
  48. padding-left: 0 !important;
  49. padding-right: 0 !important;
  50. }
  51. .d-block {
  52. display: block;
  53. }
  54. .gap-80 {
  55. gap: 80px;
  56. }
  57. .gap-36 {
  58. gap: 36px;
  59. }
  60. .w-100 {
  61. width: 100%;
  62. }
  63. .gap-10 {
  64. gap: 10px;
  65. }
  66. .gap-20 {
  67. gap: 20px;
  68. }
  69. .gap-5 {
  70. gap: 5px;
  71. }
  72. .plr-20 {
  73. padding-left: 20px;
  74. padding-right: 20px;
  75. padding-top: 20px;
  76. }
  77. .pb-0 {
  78. padding-bottom: 0 !important;
  79. }
  80. .ptr {
  81. cursor: pointer;
  82. }
  83. .red {
  84. color: red;
  85. margin: 0 !important;
  86. }
  87. /* Border */
  88. .mat-form-field-appearance-outline .mat-form-field-outline {
  89. color: white;
  90. }
  91. /* Font color */
  92. input.mat-input-element {
  93. color: white;
  94. }
  95. .mt-1 {
  96. margin-top: 1rem;
  97. }
  98. ::placeholder {
  99. color: #c5c5c5;
  100. }
  101. .ngx-otp-input-container {
  102. justify-content: center !important;
  103. }
  104. .ngx-otp-input {
  105. width: 15px !important;
  106. height: 15px !important;
  107. }
  108. .m-0 {
  109. margin: 0 !important;
  110. }
  111. .bold {
  112. font-family: Montserrat-Bold;
  113. }
  114. .h-100 {
  115. height: 100%;
  116. }
  117. .absolute {
  118. position: absolute;
  119. }
  120. .bottom {
  121. bottom: 2rem;
  122. }
  123. .mat-drawer-content {
  124. padding: 0 20px;
  125. }
  126. .mb-1 {
  127. margin-bottom: 1rem;
  128. }
  129. .mb-0_5 {
  130. margin-bottom: 0.5rem;
  131. }
  132. .pt-0 {
  133. padding-top: 5px !important;
  134. }
  135. .gap-30 {
  136. gap: 30px;
  137. }
  138. .gap-10 {
  139. gap: 10px;
  140. }
  141. .pt-2 {
  142. padding-top: 2px;
  143. }
  144. .plr-30 {
  145. padding: 0 30px;
  146. }
  147. .height-inherit {
  148. height: inherit !important;
  149. }
  150. .mat-form-field-wrapper .mat-form-field-flex input {
  151. border: none !important;
  152. }
  153. .pt-5 {
  154. padding-top: 5px !important;
  155. padding-bottom: 0 !important;
  156. }
  157. .main-color {
  158. color: $main-color;
  159. font-size: 16px;
  160. }
  161. .fz-16 {
  162. font-size: 16px !important;
  163. }
  164. .gap-0 {
  165. gap: 0;
  166. }
  167. .border-0 {
  168. border: 0 !important;
  169. }
  170. .white {
  171. color: #fff !important;
  172. }
  173. .text-center {
  174. text-align: center;
  175. }
  176. .top-02 {
  177. margin-top: 0.2rem !important;
  178. }
  179. .border-bottom-white {
  180. border-bottom: 1px solid $white-color;
  181. }
  182. .pb-0-5 {
  183. padding-bottom: 0.5rem;
  184. }
  185. .mt-20 {
  186. margin-top: 20px;
  187. }