Ingen beskrivning
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

_utilities.scss 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. // colors
  2. .bg-green {
  3. background-color: #3bb78f;
  4. background: linear-gradient(90deg, #3bb78f 0%, rgba(11, 171, 100, 1) 35%, rgba(59, 183, 143, 1) 100%);
  5. }
  6. .text-green-Awni {
  7. color: #0A886A;
  8. }
  9. .orbitron_font {
  10. font-family: 'Orbitron', sans-serif;
  11. }
  12. // font size
  13. .font-3 {
  14. font-size: 3rem;
  15. }
  16. .font-1_5 {
  17. font-size: 2rem;
  18. }
  19. .font-1_7 {
  20. font-size: 1.7rem;
  21. }
  22. .font-2 {
  23. font-size: 2.2rem;
  24. }
  25. .font-2_2 {
  26. font-size: 2.2rem;
  27. }
  28. .font-2_7 {
  29. font-size: 2.7rem;
  30. }
  31. .font_4 {
  32. font-size: 4rem;
  33. }
  34. .subtitle_1 {
  35. font-size: 1.5rem;
  36. }
  37. .gap-1 {
  38. gap: 0.7rem;
  39. }
  40. .banner_heading_4 {
  41. font-size: 3rem;
  42. }
  43. // padding
  44. .padding_top_14 {
  45. padding-top: 14rem;
  46. }
  47. .p-6 {
  48. padding: 5rem;
  49. }
  50. .padding_top_10 {
  51. padding-top: 10rem;
  52. }
  53. // heights
  54. .h-10 {
  55. height: 10%;
  56. }
  57. .h-15 {
  58. height: 15%;
  59. }
  60. .h-20 {
  61. height: 20%;
  62. }
  63. .h-30 {
  64. height: 30%;
  65. }
  66. .h-33 {
  67. height: 33%;
  68. }
  69. .h-34 {
  70. height: 34%;
  71. }
  72. .h-35 {
  73. height: 35%;
  74. }
  75. .h-40 {
  76. height: 40%;
  77. }
  78. .vh_60 {
  79. height: 60vh;
  80. }
  81. .vh-70 {
  82. height: 70vh;
  83. }
  84. .vh-77 {
  85. height: 77vh;
  86. }
  87. .vh-85 {
  88. height: 85vh;
  89. }
  90. .vh-15 {
  91. height: 15vh;
  92. }
  93. .h-700p {
  94. height: 700px;
  95. }
  96. // margin
  97. .mt-7 {
  98. margin-top: 7rem;
  99. }
  100. // font weight
  101. .fw-600 {
  102. font-weight: 600;
  103. }
  104. .fw-700 {
  105. font-weight: 700;
  106. }
  107. .h-200p {
  108. height: 200px;
  109. }
  110. // spacing
  111. .sec-space-1 {
  112. margin-top: 80px;
  113. }
  114. .sec-space-2 {
  115. margin-top: 60px;
  116. }
  117. .sec-space-3 {
  118. margin-top: 40px;
  119. }
  120. .sec-space-4 {
  121. margin-top: 20px;
  122. }
  123. .sec-space-5 {
  124. margin-top: 0px;
  125. }
  126. .h-100p {
  127. height: 100px;
  128. }
  129. // gap
  130. .gap-1 {
  131. gap: 0.7rem;
  132. }
  133. .gap-2 {
  134. gap: 2rem
  135. }
  136. // border-radius
  137. .br-1 {
  138. border-radius: 1rem;
  139. }