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.

style.css 9.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555
  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. *,
  16. *::after,
  17. *::before {
  18. margin: 0;
  19. padding: 0;
  20. box-sizing: inherit;
  21. }
  22. body {
  23. box-sizing: border-box;
  24. overflow-x: hidden;
  25. }
  26. @media only screen and (max-width: 56.25em) {
  27. body {
  28. padding: 0;
  29. }
  30. }
  31. .bg-green {
  32. background-color: #3bb78f;
  33. background: linear-gradient(90deg, #3bb78f 0%, rgb(11, 171, 100) 35%, rgb(59, 183, 143) 100%);
  34. }
  35. .text-green-Awni {
  36. color: #0A886A;
  37. }
  38. .orbitron_font {
  39. font-family: "Orbitron", sans-serif;
  40. }
  41. .font-3 {
  42. font-size: 3rem;
  43. }
  44. .font-1_5 {
  45. font-size: 2rem;
  46. }
  47. .font-1_7 {
  48. font-size: 1.7rem;
  49. }
  50. .font-2 {
  51. font-size: 2.2rem;
  52. }
  53. .font-2_2 {
  54. font-size: 2.2rem;
  55. }
  56. .font-2_7 {
  57. font-size: 2.7rem;
  58. }
  59. .font_4 {
  60. font-size: 4rem;
  61. }
  62. .subtitle_1 {
  63. font-size: 1.5rem;
  64. }
  65. .banner_heading_4 {
  66. font-size: 3rem;
  67. }
  68. .padding_top_14 {
  69. padding-top: 14rem;
  70. }
  71. .p-6 {
  72. padding: 5rem;
  73. }
  74. .padding_top_10 {
  75. padding-top: 10rem;
  76. }
  77. .h-10 {
  78. height: 10%;
  79. }
  80. .h-15 {
  81. height: 15%;
  82. }
  83. .h-20 {
  84. height: 20%;
  85. }
  86. .h-30 {
  87. height: 30%;
  88. }
  89. .h-33 {
  90. height: 33%;
  91. }
  92. .h-34 {
  93. height: 34%;
  94. }
  95. .h-35 {
  96. height: 35%;
  97. }
  98. .h-40 {
  99. height: 40%;
  100. }
  101. .vh_60 {
  102. height: 60vh;
  103. }
  104. .vh-70 {
  105. height: 70vh;
  106. }
  107. .vh-77 {
  108. height: 77vh;
  109. }
  110. .vh-85 {
  111. height: 85vh;
  112. }
  113. .vh-15 {
  114. height: 15vh;
  115. }
  116. .h-700p {
  117. height: 700px;
  118. }
  119. .fw-600 {
  120. font-weight: 600;
  121. }
  122. .fw-700 {
  123. font-weight: 700;
  124. }
  125. .h-200p {
  126. height: 200px;
  127. }
  128. .gap-1 {
  129. gap: 0.7rem;
  130. }
  131. .gap-2 {
  132. gap: 2rem;
  133. }
  134. .br-1 {
  135. border-radius: 1rem;
  136. }
  137. .button_dark {
  138. -webkit-clip-path: polygon(75% 0, 86% 30%, 99% 66%, 100% 100%, 0 100%, 0 61%, 0 0);
  139. clip-path: polygon(75% 0, 86% 30%, 99% 66%, 100% 100%, 0 100%, 0 61%, 0 0);
  140. padding-right: 1.7rem;
  141. padding-bottom: 0.6rem;
  142. padding-top: 0.6rem;
  143. border-radius: 10px;
  144. }
  145. .productoverviewmain {
  146. background-image: url("../../dist/assets/imgs/productoverview/productbg.png");
  147. background-color: white;
  148. background-size: cover;
  149. background-repeat: no-repeat;
  150. background-position: center;
  151. position: relative;
  152. }
  153. .photo_dual {
  154. width: 40rem;
  155. }
  156. .price_footer {
  157. background: rgba(255, 255, 255, 0.25);
  158. /* box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 ); */
  159. backdrop-filter: blur(4px);
  160. -webkit-backdrop-filter: blur(4px);
  161. border: 1px solid rgba(255, 255, 255, 0.18);
  162. border: 2px solid;
  163. position: absolute;
  164. z-index: 999;
  165. bottom: 0;
  166. left: 0;
  167. }
  168. .boxImgContainer {
  169. width: 4rem;
  170. }
  171. .priceCut_multi {
  172. font-size: 0.7rem;
  173. }
  174. .PO_learnMore {
  175. font-size: 0.7rem;
  176. }
  177. .productOverview .overviewProductHeading {
  178. font-size: 2.1rem;
  179. font-family: "satoshi", sans-serif;
  180. font-weight: 500;
  181. }
  182. .productOverview .overviewProductFullTitle {
  183. padding: 2rem 11rem;
  184. font-size: 3rem;
  185. font-family: "orbitron", sans-serif;
  186. }
  187. .productOverview .overviewProductDes {
  188. padding: 0 2rem;
  189. font-size: 1.5rem;
  190. font-family: "satoshi", sans-serif;
  191. }
  192. .PO_galleryContainer .PO_gallery_display {
  193. min-height: 500px;
  194. width: 100%;
  195. background: white;
  196. background: linear-gradient(180deg, white 7%, rgba(255, 142, 158, 0.3019607843) 52%, rgba(235, 134, 148, 0.4705882353) 100%);
  197. position: relative;
  198. }
  199. .PO_galleryContainer .PO_gallery_display .PO_gallery_display_img {
  200. position: absolute;
  201. top: 50%;
  202. left: 50%;
  203. transform: translate(-50%, -50%);
  204. }
  205. .PO_galleryContainer .PO_gallery_box_inner {
  206. padding: 2rem;
  207. background-color: #eeeeee;
  208. }
  209. .productoverBox .PO_box {
  210. height: 100%;
  211. }
  212. .productoverBox .PO_box > div {
  213. padding: 1rem 0rem;
  214. }
  215. .productoverBox .PO_box .box_inner {
  216. height: 100%;
  217. }
  218. .productoverBox .PO_box .bgBox_Content {
  219. background: rgb(236, 236, 236);
  220. background: linear-gradient(90deg, rgb(236, 236, 236) 4%, rgb(118, 118, 118) 100%);
  221. }
  222. .productoverBox .PO_box .box_inner_right {
  223. padding-left: 1rem;
  224. }
  225. .productoverBox .PO_box .box_inner_left {
  226. padding-right: 1rem;
  227. }
  228. .displayscreenpad .displayscreenpadContainer {
  229. text-align: center;
  230. }
  231. .displayscreenpad .displayscreenpadHeading {
  232. font-size: 8rem;
  233. }
  234. .displayscreenpad .displayscreenpadMain {
  235. top: -108px;
  236. }
  237. .displayscreenpad .displayscreenpadleft > img {
  238. left: -8%;
  239. }
  240. .displayscreenpad .displayscreenpadright > img {
  241. right: -10%;
  242. }
  243. .dual_des_heading {
  244. font-size: 3rem;
  245. }
  246. .dualLaptop {
  247. width: 100vw;
  248. height: 1000px;
  249. top: -100px;
  250. margin-bottom: -100px;
  251. position: relative;
  252. }
  253. .dualLaptop .zeroBMain_desP {
  254. font-size: 1.2rem;
  255. }
  256. .dualLaptop .zeroBMain_des {
  257. position: absolute;
  258. top: 0;
  259. right: 0;
  260. max-width: 700px;
  261. padding-right: 9rem;
  262. }
  263. .dualLaptop .dualImgs {
  264. position: absolute;
  265. }
  266. .dualLaptop .dualImgs .dualImgsInner {
  267. width: 63%;
  268. }
  269. .dualLaptop .dualImgsOne {
  270. top: 0;
  271. left: -10%;
  272. transform: rotate(343deg);
  273. width: 68%;
  274. }
  275. .dualLaptop .dualImgsTwo {
  276. top: 31%;
  277. right: -68%;
  278. transform: rotate(339deg);
  279. }
  280. .dualLaptop .dualImgsTwo .dualImgsInner {
  281. width: 82%;
  282. }
  283. .tableLaptop {
  284. margin-top: 300px;
  285. height: 90vh;
  286. width: 100vw;
  287. position: relative;
  288. margin-bottom: 300px;
  289. }
  290. .tableLaptop .circleTableLaptop_Heading {
  291. position: absolute;
  292. top: 50%;
  293. left: 50%;
  294. transform: translate(-50%, -311%);
  295. }
  296. .tableLaptop .justTableLaptop {
  297. position: absolute;
  298. width: 86%;
  299. top: -10px;
  300. right: 128px;
  301. z-index: 1;
  302. }
  303. .tableLaptop .circleTableLaptop {
  304. background-color: #ECECEC;
  305. height: 70rem;
  306. width: 70rem;
  307. border-radius: 50%;
  308. position: relative;
  309. overflow: hidden;
  310. }
  311. .tableLaptop .circleTableLaptop .circleTableLaptopTop {
  312. bottom: -3%;
  313. width: 80%;
  314. position: absolute;
  315. top: 50%;
  316. left: 50%;
  317. transform: translate(-50%, 2%);
  318. }
  319. .tableLaptop .circleTableLaptop_text {
  320. position: absolute;
  321. top: 50%;
  322. left: 50%;
  323. transform: translate(-50%, 168%);
  324. }
  325. .trueLifeDisplay .trueLifeDisplay_headingHD > .headingLife {
  326. font-size: 6rem;
  327. }
  328. .trueLifeDisplay .trueLifeDisplay_des {
  329. padding: 0 10rem;
  330. }
  331. .font_p_Dual {
  332. font-size: 1.2rem;
  333. }
  334. .controlPanel {
  335. margin-top: 10rem;
  336. padding-bottom: 550px;
  337. }
  338. .controlPanel .controlPanel_des {
  339. position: absolute;
  340. top: -170px;
  341. left: 80px;
  342. }
  343. .controlPanel .bgControlpanel {
  344. min-height: 100vh;
  345. background-color: #ECECEC;
  346. border-radius: 157px;
  347. position: relative;
  348. }
  349. .controlPanel .bgControlpanel .bgControlpaneltabs {
  350. position: absolute;
  351. top: 100px;
  352. right: 0;
  353. }
  354. .controlPanel .bgControlpanel .bgControlpaneltabs .nav-tabs {
  355. border-bottom: 1px solid;
  356. margin-bottom: 2rem;
  357. }
  358. .controlPanel .bgControlpanel .bgControlpaneltabs .nav-item {
  359. position: relative;
  360. border: none;
  361. }
  362. .controlPanel .bgControlpanel .bgControlpaneltabs .nav-tabs .nav-link {
  363. position: relative;
  364. color: black;
  365. font-weight: 500;
  366. }
  367. .controlPanel .bgControlpanel .bgControlpaneltabs .nav-tabs .nav-link.active {
  368. border: none;
  369. background-color: transparent;
  370. }
  371. .controlPanel .bgControlpanel .bgControlpaneltabs .nav-tabs .nav-link.active::before {
  372. display: block;
  373. }
  374. .controlPanel .bgControlpanel .bgControlpaneltabs .nav-item .nav-link::before {
  375. content: "";
  376. position: absolute;
  377. width: 100%;
  378. height: 5px;
  379. bottom: -2px;
  380. right: 0;
  381. display: none;
  382. background-color: black;
  383. }
  384. .designedProLaptop {
  385. position: relative;
  386. }
  387. .designedProLaptop .designedProLaptop_title {
  388. position: absolute;
  389. top: -200px;
  390. left: 0;
  391. z-index: 1;
  392. }
  393. .designedProLaptop .designedProLaptop_title_text {
  394. font-size: 10rem;
  395. }
  396. .designedProLaptop .designedProLaptop_img {
  397. position: absolute;
  398. top: 0;
  399. right: 700px;
  400. }
  401. /*
  402. 0 - 600px: Phone
  403. 600 - 900px: Tablet portrait
  404. 900 - 1200px: Tablet landscape
  405. [1200 - 1800] is where our normal styles apply
  406. 1800px + : Big desktop
  407. $breakpoint arguement choices:
  408. - phone
  409. - tab-port
  410. - tab-land
  411. - big-desktop
  412. ORDER: Base + typography > general layout + grid > page layout > components
  413. 1em = 16px
  414. */
  415. /* Orbitron */
  416. @font-face {
  417. font-family: "Orbitron";
  418. src: url("../assets/font/orbitron/Orbitron-Regular.ttf") format("truetype");
  419. font-weight: 400;
  420. font-style: normal;
  421. }
  422. @font-face {
  423. font-family: "Orbitron";
  424. src: url("../assets/font/orbitron/Orbitron-Medium.ttf") format("truetype");
  425. font-weight: 500;
  426. font-style: normal;
  427. }
  428. @font-face {
  429. font-family: "Orbitron";
  430. src: url("../assets/font/orbitron/Orbitron-SemiBold.ttf") format("truetype");
  431. font-weight: 600;
  432. font-style: normal;
  433. }
  434. @font-face {
  435. font-family: "Orbitron";
  436. src: url("../assets/font/orbitron/Orbitron-Bold.ttf") format("truetype");
  437. font-weight: 700;
  438. font-style: normal;
  439. }
  440. /* Orbitron end */
  441. /* Satoshi */
  442. @font-face {
  443. font-family: "Satoshi";
  444. src: url("../assets/font/satoshi/Satoshi-Regular.ttf") format("truetype");
  445. font-weight: 400;
  446. font-style: normal;
  447. }
  448. @font-face {
  449. font-family: "Satoshi";
  450. src: url("../assets/font/satoshi/Satoshi-Medium.ttf") format("truetype");
  451. font-weight: 500;
  452. font-style: normal;
  453. }
  454. @font-face {
  455. font-family: "Satoshi";
  456. src: url("../assets/font/satoshi/Satoshi-Bold.ttf") format("truetype");
  457. font-weight: 700;
  458. font-style: normal;
  459. }
  460. /* Satoshi end */
  461. .satoshi_font {
  462. font-family: "Satoshi", sans-serif;
  463. }
  464. .bg-green {
  465. background-color: #3bb78f;
  466. background: linear-gradient(90deg, #3bb78f 0%, #0bab64 35%, #3bb78f 100%);
  467. }
  468. /* button */
  469. .button_dark {
  470. -webkit-clip-path: polygon(75% 0, 86% 30%, 99% 66%, 100% 100%, 0 100%, 0 61%, 0 0);
  471. clip-path: polygon(75% 0, 86% 30%, 99% 66%, 100% 100%, 0 100%, 0 61%, 0 0);
  472. padding-right: 1.7rem;
  473. padding-bottom: 0.6rem;
  474. padding-top: 0.6rem;
  475. border-radius: 10px;
  476. }
  477. /* footer */
  478. .footer-wrapper {
  479. background-color: rgb(0, 0, 0);
  480. border-radius: 0 275px 0 0;
  481. -webkit-clip-path: polygon(100% 0%, 100% 0%, 81% 100%, 92% -95%, 100% 100%, 0 100%, 0% 70%, 0 0);
  482. clip-path: polygon(100% 0%, 100% 0%, 81% 100%, 92% -95%, 100% 100%, 0 100%, 0% 70%, 0 0);
  483. }
  484. .footer-wrapper li {
  485. line-height: 2rem;
  486. }/*# sourceMappingURL=style.css.map */