Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

style.scss 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. @import "abstracts/functions";
  2. @import "abstracts/mixins";
  3. @import "abstracts/variables";
  4. @import "base/base";
  5. @import "base/typography";
  6. @import "base/utilities";
  7. // components
  8. @import "components/button";
  9. // pages
  10. @import "pages/productOverview";
  11. @import "pages/productOverview/designedpro";
  12. @import "pages/productOverview/popupkeyboard";
  13. @import "pages/productOverview/dragondisplay";
  14. @import "pages/productOverview/lens";
  15. @import "pages/productOverview/professinalGrade";
  16. @import "pages/productOverview/stunningsound";
  17. @import "pages/productOverview/wifisection";
  18. @import "pages/productOverview/tablesection";
  19. // @import "pages/home";
  20. // @import "pages/shopping-cart";
  21. @import "pages/allInOne";
  22. /*
  23. 0 - 600px: Phone
  24. 600 - 900px: Tablet portrait
  25. 900 - 1200px: Tablet landscape
  26. [1200 - 1800] is where our normal styles apply
  27. 1800px + : Big desktop
  28. $breakpoint arguement choices:
  29. - phone
  30. - tab-port
  31. - tab-land
  32. - big-desktop
  33. ORDER: Base + typography > general layout + grid > page layout > components
  34. 1em = 16px
  35. */
  36. /* Orbitron */
  37. @font-face {
  38. font-family: "Orbitron";
  39. src: url("../assets/font/orbitron/Orbitron-Regular.ttf") format("truetype");
  40. font-weight: 400;
  41. font-style: normal;
  42. }
  43. @font-face {
  44. font-family: "Orbitron";
  45. src: url("../assets/font/orbitron/Orbitron-Medium.ttf") format("truetype");
  46. font-weight: 500;
  47. font-style: normal;
  48. }
  49. @font-face {
  50. font-family: "Orbitron";
  51. src: url("../assets/font/orbitron/Orbitron-SemiBold.ttf") format("truetype");
  52. font-weight: 600;
  53. font-style: normal;
  54. }
  55. @font-face {
  56. font-family: "Orbitron";
  57. src: url("../assets/font/orbitron/Orbitron-Bold.ttf") format("truetype");
  58. font-weight: 700;
  59. font-style: normal;
  60. }
  61. /* Orbitron end */
  62. /* Satoshi */
  63. @font-face {
  64. font-family: "Satoshi";
  65. src: url("../assets/font/satoshi/Satoshi-Regular.ttf") format("truetype");
  66. font-weight: 400;
  67. font-style: normal;
  68. }
  69. @font-face {
  70. font-family: "Satoshi";
  71. src: url("../assets/font/satoshi/Satoshi-Medium.ttf") format("truetype");
  72. font-weight: 500;
  73. font-style: normal;
  74. }
  75. @font-face {
  76. font-family: "Satoshi";
  77. src: url("../assets/font/satoshi/Satoshi-Bold.ttf") format("truetype");
  78. font-weight: 700;
  79. font-style: normal;
  80. }
  81. *,
  82. *::after,
  83. *::before {
  84. margin: 0;
  85. padding: 0;
  86. box-sizing: inherit;
  87. font-family: "Orbitron", sans-serif;
  88. }
  89. /* Satoshi end */
  90. .satoshi_font {
  91. font-family: "Satoshi", sans-serif;
  92. }
  93. html {
  94. font-size: 100%;
  95. }
  96. body {
  97. box-sizing: border-box;
  98. overflow-x: hidden;
  99. }
  100. @media only screen and (max-width: 56.25em) {
  101. body {
  102. padding: 0;
  103. }
  104. }
  105. // html {
  106. // font-size: 100%; }
  107. // body {
  108. // box-sizing: border-box;
  109. // overflow-x: hidden;
  110. // }
  111. // @media only screen and (max-width: 56.25em) {
  112. // body {
  113. // padding: 0; }
  114. // }
  115. .bg-green {
  116. background-color: #3bb78f;
  117. background: linear-gradient(90deg, #3bb78f 0%, #0bab64 35%, #3bb78f 100%);
  118. }
  119. /* button */
  120. .button_dark {
  121. clip-path: polygon(75% 0, 86% 30%, 99% 66%, 100% 100%, 0 100%, 0 61%, 0 0);
  122. padding-right: 1.7rem;
  123. padding-bottom: 0.6rem;
  124. padding-top: 0.6rem;
  125. border-radius: 10px;
  126. }
  127. // navbar
  128. .biz-nav-wrapper {
  129. .navbar-brand img {
  130. width: 150px;
  131. }
  132. }
  133. .navbar-nav .nav-item .nav-link {
  134. color: #000000;
  135. font-family: "Satoshi", sans-serif;
  136. }
  137. /* footer */
  138. .footer-wrapper {
  139. // background-color: rgb(0, 0, 0);
  140. background-image: url(../dist/assets/imgs/Home/Footer-bg-1.png);
  141. background-size: cover;
  142. .footer-content-main-container {
  143. background-image: url(../dist/assets/imgs/Home/Footer-pattern.png);
  144. background-size: contain;
  145. background-position: right 30px;
  146. background-repeat: no-repeat;
  147. }
  148. .last-col-footer {
  149. width: 23%;
  150. }
  151. @media (min-width:1990px) {
  152. .footer-rkt {
  153. right: 45px !important;
  154. }
  155. }
  156. .footer-logo img {
  157. width: 120px;
  158. }
  159. li,
  160. .footer-sub-content p {
  161. line-height: 2rem;
  162. font-family: "Satoshi", sans-serif;
  163. }
  164. }
  165. // sachin
  166. /* footer */
  167. .footer-wrapper {
  168. background-color: rgb(0, 0, 0);
  169. border-radius: 0 275px 0 0;
  170. clip-path: polygon(100% 0%, 100% 0%, 81% 100%, 92% -95%, 100% 100%, 0 100%, 0% 70%, 0 0);
  171. }
  172. .footer-wrapper li {
  173. line-height: 2rem;
  174. }