暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

main.css 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. body {
  75. box-sizing: border-box;
  76. overflow-x: hidden;
  77. }
  78. @media only screen and (max-width: 56.25em) {
  79. body {
  80. padding: 0; }
  81. }
  82. .bg-green {
  83. background-color: #3bb78f;
  84. background: linear-gradient(90deg, #3bb78f 0%, #0bab64 35%, #3bb78f 100%); }
  85. .font-3 {
  86. font-size: 3rem; }
  87. .font-1_5 {
  88. font-size: 2rem; }
  89. .font-1_7 {
  90. font-size: 1.7rem; }
  91. .font-2 {
  92. font-size: 2.2rem; }
  93. .font-2_2 {
  94. font-size: 2.2rem; }
  95. .subtitle_1 {
  96. font-size: 1.5rem; }
  97. .gap-1 {
  98. gap: 0.7rem; }
  99. .banner_heading_4 {
  100. font-size: 3rem; }
  101. .padding_top_14 {
  102. padding-top: 14rem; }
  103. .padding_top_10 {
  104. padding-top: 10rem; }
  105. .p-6 {
  106. padding: 5rem; }
  107. .vh_60 {
  108. height: 60vh; }
  109. .vh-77 {
  110. height: 77vh; }
  111. .vh-85 {
  112. height: 85vh; }
  113. .vh-15 {
  114. height: 15vh; }
  115. .fw-600 {
  116. font-weight: 600; }
  117. .fw-700 {
  118. font-weight: 700; }
  119. .h-200p {
  120. height: 200px; }
  121. /* button */
  122. .button_dark {
  123. clip-path: polygon(75% 0, 86% 30%, 99% 66%, 100% 100%, 0 100%, 0 61%, 0 0);
  124. padding-right: 1.7rem;
  125. padding-bottom: 0.6rem;
  126. padding-top: 0.6rem;
  127. border-radius: 10px; }
  128. /* footer */
  129. .footer-wrapper {
  130. background-color: rgb(0, 0, 0);
  131. border-radius: 0 275px 0 0;
  132. clip-path: polygon(100% 0%, 100% 0%, 81% 100%, 92% -95%, 100% 100%, 0 100%, 0% 70%, 0 0);
  133. }
  134. .footer-wrapper li {
  135. line-height: 2rem;
  136. }