Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. /*
  2. 0 - 600px: Phone
  3. 600 - 900px: Tablet portrait
  4. 900 - 1200px: Tablet landscape
  5. [1200 - 1800] is where our normal styles apply
  6. 1800px + : Big desktop
  7. $breakpoint arguement choices:
  8. - phone
  9. - tab-port
  10. - tab-land
  11. - big-desktop
  12. ORDER: Base + typography > general layout + grid > page layout > components
  13. 1em = 16px
  14. */
  15. /* Orbitron */
  16. @font-face {
  17. font-family: "Orbitron";
  18. src: url("../assets/font/orbitron/Orbitron-Regular.ttf") format("truetype");
  19. font-weight: 400;
  20. font-style: normal;
  21. }
  22. @font-face {
  23. font-family: "Orbitron";
  24. src: url("../assets/font/orbitron/Orbitron-Medium.ttf") format("truetype");
  25. font-weight: 500;
  26. font-style: normal;
  27. }
  28. @font-face {
  29. font-family: "Orbitron";
  30. src: url("../assets/font/orbitron/Orbitron-SemiBold.ttf") format("truetype");
  31. font-weight: 600;
  32. font-style: normal;
  33. }
  34. @font-face {
  35. font-family: "Orbitron";
  36. src: url("../assets/font/orbitron/Orbitron-Bold.ttf") format("truetype");
  37. font-weight: 700;
  38. font-style: normal;
  39. }
  40. /* Orbitron end */
  41. /* Satoshi */
  42. @font-face {
  43. font-family: "Satoshi";
  44. src: url("../assets/font/satoshi/Satoshi-Regular.ttf") format("truetype");
  45. font-weight: 400;
  46. font-style: normal;
  47. }
  48. @font-face {
  49. font-family: "Satoshi";
  50. src: url("../assets/font/satoshi/Satoshi-Medium.ttf") format("truetype");
  51. font-weight: 500;
  52. font-style: normal;
  53. }
  54. @font-face {
  55. font-family: "Satoshi";
  56. src: url("../assets/font/satoshi/Satoshi-Bold.ttf") format("truetype");
  57. font-weight: 700;
  58. font-style: normal;
  59. }
  60. /* Satoshi end */
  61. *,
  62. *::after,
  63. *::before {
  64. margin: 0;
  65. padding: 0;
  66. box-sizing: inherit;
  67. font-family: "Orbitron", sans-serif;
  68. }
  69. .satoshi_font {
  70. font-family: "Satoshi", sans-serif;
  71. }
  72. html {
  73. font-size: 100%;
  74. }
  75. body {
  76. box-sizing: border-box;
  77. overflow-x: hidden;
  78. }
  79. @media only screen and (max-width: 56.25em) {
  80. body {
  81. padding: 0;
  82. }
  83. }
  84. .bg-green {
  85. background-color: #3bb78f;
  86. background: linear-gradient(90deg, #3bb78f 0%, #0bab64 35%, #3bb78f 100%);
  87. }
  88. .font-3 {
  89. font-size: 3rem;
  90. }
  91. .font-1_5 {
  92. font-size: 2rem;
  93. }
  94. .font-1_7 {
  95. font-size: 1.7rem;
  96. }
  97. .font-2 {
  98. font-size: 2.2rem;
  99. }
  100. .font-2_2 {
  101. font-size: 2.2rem;
  102. }
  103. .subtitle_1 {
  104. font-size: 1.5rem;
  105. }
  106. .gap-1 {
  107. gap: 0.7rem;
  108. }
  109. .banner_heading_4 {
  110. font-size: 3rem;
  111. }
  112. .padding_top_14 {
  113. padding-top: 14rem;
  114. }
  115. .padding_top_10 {
  116. padding-top: 10rem;
  117. }
  118. .p-6 {
  119. padding: 5rem;
  120. }
  121. .vh_60 {
  122. height: 60vh;
  123. }
  124. .vh-77 {
  125. height: 77vh;
  126. }
  127. .vh-85 {
  128. height: 85vh;
  129. }
  130. .vh-15 {
  131. height: 15vh;
  132. }
  133. .fw-600 {
  134. font-weight: 600;
  135. }
  136. .fw-700 {
  137. font-weight: 700;
  138. }
  139. .h-200p {
  140. height: 200px;
  141. }
  142. /* button */
  143. .button_dark {
  144. clip-path: polygon(75% 0, 86% 30%, 99% 66%, 100% 100%, 0 100%, 0 61%, 0 0);
  145. padding-right: 1.7rem;
  146. padding-bottom: 0.6rem;
  147. padding-top: 0.6rem;
  148. border-radius: 10px;
  149. }
  150. /* footer */
  151. .footer-wrapper li {
  152. line-height: 2rem;
  153. }