code added
Dieser Commit ist enthalten in:
@@ -27,15 +27,17 @@ ORDER: Base + typography > general layout + grid > page layout > components
|
||||
*/
|
||||
@mixin respond($breakpoint) {
|
||||
@if $breakpoint == phone {
|
||||
@media only screen and (max-width: 37.5em) { @content }; //600px
|
||||
@media only screen and (max-width: 600px) { @content }; //600px
|
||||
}
|
||||
@if $breakpoint == tab-port {
|
||||
@media only screen and (max-width: 56.25em) { @content }; //900px
|
||||
@media only screen and (max-width: 900px) { @content }; //900px
|
||||
}
|
||||
@if $breakpoint == tab-land {
|
||||
@media only screen and (max-width: 75em) { @content }; //1200px
|
||||
@media only screen and (max-width: 1200px) { @content }; //1200px
|
||||
}
|
||||
@if $breakpoint == big-desktop {
|
||||
@media only screen and (min-width: 112.5em) { @content }; //1800
|
||||
@media only screen and (min-width: 1800) { @content }; //1800
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -1,181 +1,273 @@
|
||||
// colors
|
||||
.bg-green {
|
||||
background-color: #3bb78f;
|
||||
background: linear-gradient(90deg, #3bb78f 0%, rgba(11, 171, 100, 1) 35%, rgba(59, 183, 143, 1) 100%);
|
||||
background-color: #3bb78f;
|
||||
background: linear-gradient(90deg, #3bb78f 0%, rgba(11, 171, 100, 1) 35%, rgba(59, 183, 143, 1) 100%);
|
||||
}
|
||||
|
||||
.text-green-Awni {
|
||||
color: #0A886A;
|
||||
.text-green-Awni{
|
||||
color: #0A886A;
|
||||
}
|
||||
|
||||
.orbitron_font {
|
||||
font-family: 'Orbitron', sans-serif;
|
||||
.anwi_grey_bg{
|
||||
background-color: #ECECEC;
|
||||
}
|
||||
|
||||
.orbitron_font{
|
||||
font-family: 'Orbitron', sans-serif;
|
||||
}
|
||||
|
||||
.satoshi_font{
|
||||
font-family: "Satoshi", sans-serif;
|
||||
}
|
||||
|
||||
// font size
|
||||
.font-1{
|
||||
font-size: 1rem;
|
||||
}
|
||||
.font-3 {
|
||||
font-size: 3rem;
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
.font-1-2{
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.font-1-5{
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.font-1_5 {
|
||||
font-size: 2rem;
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.font-1_7 {
|
||||
font-size: 1.7rem;
|
||||
.font-1_7{
|
||||
font-size: 1.7rem;
|
||||
}
|
||||
|
||||
.font-2 {
|
||||
font-size: 2.2rem;
|
||||
|
||||
.font-2{
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.font-2_2 {
|
||||
font-size: 2.2rem;
|
||||
.font-2_2{
|
||||
font-size: 2.2rem;
|
||||
}
|
||||
|
||||
.font-2_7 {
|
||||
font-size: 2.7rem;
|
||||
.font-2_7{
|
||||
font-size: 2.7rem;
|
||||
}
|
||||
|
||||
.font_4 {
|
||||
font-size: 4rem;
|
||||
|
||||
.font_4{
|
||||
font-size: 4rem;
|
||||
}
|
||||
|
||||
.font-5{
|
||||
font-size: 5rem;
|
||||
}
|
||||
|
||||
.font-6{
|
||||
font-size: 6rem;
|
||||
}
|
||||
|
||||
.font-7{
|
||||
font-size: 7rem;
|
||||
}
|
||||
|
||||
.font-10{
|
||||
font-size: 10rem;
|
||||
}
|
||||
|
||||
|
||||
.subtitle_1 {
|
||||
font-size: 1.5rem;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.gap-1 {
|
||||
gap: 0.7rem;
|
||||
}
|
||||
|
||||
|
||||
.banner_heading_4 {
|
||||
font-size: 3rem;
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
|
||||
// padding
|
||||
|
||||
.padding_top_14 {
|
||||
padding-top: 14rem;
|
||||
padding-top: 14rem;
|
||||
}
|
||||
|
||||
.p-6 {
|
||||
padding: 5rem;
|
||||
.p-6{
|
||||
padding:5rem;
|
||||
}
|
||||
|
||||
.ps-7{
|
||||
padding-left: 6rem;
|
||||
}
|
||||
|
||||
.px-6{
|
||||
padding-left: 6rem;
|
||||
padding-right: 6rem;
|
||||
}
|
||||
|
||||
.p-7{
|
||||
padding: 7rem;
|
||||
}
|
||||
|
||||
.padding_top_10 {
|
||||
padding-top: 10rem;
|
||||
}
|
||||
padding-top: 10rem; }
|
||||
|
||||
|
||||
// heights
|
||||
.h-10 {
|
||||
height: 10%;
|
||||
|
||||
.h-10{
|
||||
height: 10%;
|
||||
}
|
||||
|
||||
.h-15 {
|
||||
height: 15%;
|
||||
.h-15{
|
||||
height: 15%;
|
||||
}
|
||||
|
||||
.h-20 {
|
||||
height: 20%;
|
||||
.h-20{
|
||||
height: 20%;
|
||||
}
|
||||
|
||||
.h-30 {
|
||||
height: 30%;
|
||||
.h-30{
|
||||
height: 30%;
|
||||
}
|
||||
|
||||
.h-33 {
|
||||
height: 33%;
|
||||
.h-33{
|
||||
height: 33%;
|
||||
}
|
||||
.h-34{
|
||||
height: 34%;
|
||||
}
|
||||
.h-35{
|
||||
height: 35%;
|
||||
}
|
||||
|
||||
.h-34 {
|
||||
height: 34%;
|
||||
.h-40{
|
||||
height: 40%;
|
||||
}
|
||||
|
||||
.h-35 {
|
||||
height: 35%;
|
||||
.vh_60{
|
||||
height: 60vh;
|
||||
}
|
||||
|
||||
.h-40 {
|
||||
height: 40%;
|
||||
.vh-70{
|
||||
height: 70vh;
|
||||
}
|
||||
|
||||
.vh_60 {
|
||||
height: 60vh;
|
||||
}
|
||||
|
||||
.vh-70 {
|
||||
height: 70vh;
|
||||
}
|
||||
|
||||
.vh-77 {
|
||||
height: 77vh;
|
||||
.vh-77{
|
||||
height: 77vh;
|
||||
}
|
||||
|
||||
.vh-85 {
|
||||
height: 85vh;
|
||||
height: 85vh;
|
||||
}
|
||||
|
||||
.vh-15 {
|
||||
height: 15vh;
|
||||
height: 15vh;
|
||||
}
|
||||
|
||||
.h-700p {
|
||||
height: 700px;
|
||||
.h-700p{
|
||||
height: 700px;
|
||||
}
|
||||
|
||||
.h-25{
|
||||
height: 25%;
|
||||
}
|
||||
|
||||
.h-60{
|
||||
height: 60%;
|
||||
}
|
||||
|
||||
.h-75{
|
||||
height: 75%;
|
||||
}
|
||||
|
||||
.w-60{
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
|
||||
.w-20p{
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
// font weight
|
||||
|
||||
|
||||
.fw-500{
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.fw-600{
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
|
||||
.fw-700 {
|
||||
font-weight: 700; }
|
||||
|
||||
|
||||
.h-200p{
|
||||
height: 200px;
|
||||
}
|
||||
|
||||
// margin
|
||||
.mt-7 {
|
||||
margin-top: 7rem;
|
||||
margin-top: 7rem;
|
||||
}
|
||||
|
||||
// font weight
|
||||
.fw-600 {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.fw-700 {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.h-200p {
|
||||
height: 200px;
|
||||
}
|
||||
|
||||
// spacing
|
||||
.sec-space-1 {
|
||||
margin-top: 80px;
|
||||
margin-top: 80px;
|
||||
}
|
||||
|
||||
.sec-space-2 {
|
||||
margin-top: 60px;
|
||||
margin-top: 60px;
|
||||
}
|
||||
|
||||
.sec-space-3 {
|
||||
margin-top: 40px;
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.sec-space-4 {
|
||||
margin-top: 20px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.sec-space-5 {
|
||||
margin-top: 0px;
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
.h-100p {
|
||||
height: 100px;
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
// gap
|
||||
|
||||
.gap-1 {
|
||||
gap: 0.7rem;
|
||||
gap: 0.7rem;
|
||||
}
|
||||
|
||||
.gap-2 {
|
||||
gap: 2rem
|
||||
.gap-2{
|
||||
gap:2rem
|
||||
}
|
||||
|
||||
// border-radius
|
||||
.br-1 {
|
||||
border-radius: 1rem;
|
||||
|
||||
.br-1{
|
||||
border-radius: 1rem;
|
||||
}
|
||||
|
||||
.cursor-pointer{
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
// margin
|
||||
.mt-5C{
|
||||
margin-top: 5rem;
|
||||
}
|
||||
@@ -0,0 +1,382 @@
|
||||
|
||||
.clipPathSectionCol{
|
||||
|
||||
|
||||
position: relative;
|
||||
|
||||
.innerClipPathImg{
|
||||
position: absolute;
|
||||
top: 12%;
|
||||
left: 9%;
|
||||
width: 81%;
|
||||
}
|
||||
|
||||
.innerClipPathImgFirstThree{
|
||||
position: absolute;
|
||||
top: 12%;
|
||||
left:5%;
|
||||
width: 81%;
|
||||
}
|
||||
|
||||
.innerClipPathImgFirstFour{
|
||||
position: absolute;
|
||||
top: 12%;
|
||||
left:5%;
|
||||
width: 81%;
|
||||
>img{
|
||||
transform: scale(0.7);
|
||||
}
|
||||
}
|
||||
|
||||
.innerClipPathImgSectionTwo{
|
||||
position: absolute;
|
||||
|
||||
top: 50%;
|
||||
left: 28%;
|
||||
transform: translateY(-50%);
|
||||
width: 81%;
|
||||
}
|
||||
|
||||
.innerClipPathImgSectionThree{
|
||||
position: absolute;
|
||||
|
||||
top: 50%;
|
||||
left:17%;
|
||||
transform: translateY(-50%);
|
||||
width: 81%;
|
||||
|
||||
}
|
||||
.innerClipPathImgSectionFour{
|
||||
position: absolute;
|
||||
|
||||
top: 50%;
|
||||
left: 17%;
|
||||
transform: translateY(-50%);
|
||||
width: 81%;
|
||||
// >img{
|
||||
// transform: scale(0.7);
|
||||
// }
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
.allinoneLanding{
|
||||
background-image: url("./../../dist/assets/imgs/allinone/allinonebg.png");
|
||||
background-color: white;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
|
||||
position: relative;
|
||||
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
#navbar-head *{
|
||||
color: white;
|
||||
}
|
||||
|
||||
.headingAllinOne{
|
||||
position: absolute;
|
||||
bottom: 10%;
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.sectionTwoImgAllInone{
|
||||
transform: scale(1.4);
|
||||
}
|
||||
|
||||
.allinoneDualMarginTop{
|
||||
margin-top: 200px;
|
||||
}
|
||||
|
||||
.sectionfiveAllinOne{
|
||||
.infoContainer{
|
||||
position: relative;
|
||||
.infoContainerOneText{
|
||||
position: absolute;
|
||||
top: 20%;
|
||||
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
>h1{
|
||||
font-size: 1.7rem;
|
||||
}
|
||||
}
|
||||
// width: 100%;
|
||||
// max-height: 500px;
|
||||
}
|
||||
}
|
||||
|
||||
.infoContainerYellow{
|
||||
background-color: #FFB518;
|
||||
|
||||
}
|
||||
.infoContainerOrange{
|
||||
background-color: #E05E00;
|
||||
color: white;
|
||||
}
|
||||
.infoContainerBlue{
|
||||
background-color: #461DCF;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.infoContainer_des{
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.supportBoxCircle{
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
background-color: black;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
// carouselLanding
|
||||
|
||||
.carouselLanding{
|
||||
overflow-x: auto;
|
||||
display: flex;
|
||||
gap: 50px;
|
||||
margin-bottom:4rem;
|
||||
.carouselLandingItem{
|
||||
width: 300px;
|
||||
>div{
|
||||
border-radius: 25px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.carouselLandingItemInner{
|
||||
position: relative;
|
||||
.carouselLandingItemInnerOverlay{
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: rgba(0, 0, 0, 0.453);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width:1300px) {
|
||||
.laptopsSection .headinglaptop{
|
||||
font-size: 5rem;
|
||||
}
|
||||
|
||||
.headinglaptopSub{
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media (max-width:1000px) {
|
||||
.laptopsSection .headinglaptop{
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
.headinglaptopSub{
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
// allinoneDual
|
||||
|
||||
.allinoneDualMarginTop {
|
||||
.allinoneDualMarginTop_desContainer {
|
||||
padding: 2rem;
|
||||
h1{
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.allinoneDualMarginTop_p{
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.allinoneDualMarginTop{
|
||||
margin-top: 100px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (tab-port) {
|
||||
.laptopsSection .headinglaptop{
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.headinglaptopSub{
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
@include respond(phone) {
|
||||
.headingAllinOne > h1{
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width:600px) {
|
||||
.supTitleSection{
|
||||
text-align: center;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.allinoneDualMarginTop .clipPathSectionCol{
|
||||
padding-right: 0 !important;
|
||||
}
|
||||
.headingAllinOne{
|
||||
padding-left: 2rem !important;
|
||||
padding-right: 2rem !important;
|
||||
> h1{
|
||||
font-size: 2rem;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.laptopSectionDesP{
|
||||
padding: 1rem;
|
||||
width: 100%;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.allinoneDualMarginTop {
|
||||
.clipPathSectionCol{
|
||||
padding-left: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.clipPathSectionCol{
|
||||
//padding-left: 1rem !important;
|
||||
.allinoneDualMarginTop_pContainer{
|
||||
padding: 2rem;
|
||||
align-items: center;
|
||||
}
|
||||
.innerClipPathImgSectionThree{
|
||||
top: 30%;
|
||||
}
|
||||
|
||||
.innerClipPathImgSectionFour{
|
||||
top: 30%;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
.supportBoxParent{
|
||||
padding: 2rem;
|
||||
gap: 1.5rem;
|
||||
}
|
||||
|
||||
.allinoneDualMarginTop_p{
|
||||
text-align: center;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.insightsAdvHeading{
|
||||
margin-top: 2rem;
|
||||
}
|
||||
.insightsAdv{
|
||||
width: 100vw;
|
||||
padding: 1rem;
|
||||
>ul{
|
||||
overflow-x: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.carouselLanding{
|
||||
overflow-x: auto;
|
||||
display: block;
|
||||
gap:0;
|
||||
margin-bottom:1rem;
|
||||
.carouselLandingItem{
|
||||
width: 100%;
|
||||
>div{
|
||||
border-radius: 25px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.carouselLandingItemInner{
|
||||
position: relative;
|
||||
.carouselLandingItemInnerOverlay{
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: rgba(0, 0, 0, 0.453);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.mt-5C{
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@media (max-width:320px) {
|
||||
|
||||
|
||||
.laptopsSection {
|
||||
.headinglaptopSub{
|
||||
text-align: center;
|
||||
font-size: 1rem;
|
||||
|
||||
}
|
||||
|
||||
.laptopSectionDesP {
|
||||
gap: 2rem !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.allinoneDualMarginTop {
|
||||
.allinoneDualMarginTop_p{
|
||||
text-align: center;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.allinoneDualMarginTop_pContainer {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.clipPathSectionCol{
|
||||
padding-left: 0 !important;
|
||||
padding-right: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
.clipPathSectionCol {
|
||||
|
||||
.innerClipPathImgSectionThree{
|
||||
top: 22%;
|
||||
}
|
||||
|
||||
.innerClipPathImgSectionFour{
|
||||
top: 22%;
|
||||
}
|
||||
.innerClipPathImgFirstFour{
|
||||
top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.allinoneDualMarginTop {
|
||||
margin-top: 100px;
|
||||
.innerClipPathImgFirstThree{
|
||||
top:0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -65,88 +65,214 @@ $PO_footerText: 0.7rem;
|
||||
background: white;
|
||||
background: linear-gradient(180deg, white 7%, #ff8e9e4d 52%, #eb869478 100%);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.PO_galleryContainer .PO_gallery_display .PO_gallery_display_img {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
transform: translate(-50%, -46%);
|
||||
}
|
||||
|
||||
.PO_gallery_box {
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.PO_galleryContainer .PO_gallery_box_inner {
|
||||
padding: 2rem;
|
||||
padding: 1rem;
|
||||
background-color: #eeeeee;
|
||||
}
|
||||
|
||||
.mobileAw{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.productoverBox {
|
||||
height: 900px;
|
||||
|
||||
.productoverBox-1 {
|
||||
height: 225px;
|
||||
}
|
||||
|
||||
.productoverBox-2 {
|
||||
height: 225px;
|
||||
|
||||
.futureProof {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.futureProofImg {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
.productoverBox-3 {
|
||||
height: 225px;
|
||||
}
|
||||
|
||||
.productoverBox-4 {
|
||||
height: 225px;
|
||||
}
|
||||
|
||||
.productoverBox-5 {
|
||||
height: 200px;
|
||||
overflow: hidden;
|
||||
|
||||
.box_innerImg {
|
||||
position: absolute;
|
||||
right: 8%;
|
||||
top: 0;
|
||||
|
||||
height: 100%;
|
||||
|
||||
img {
|
||||
scale: 1.2;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.productoverBox-6 {
|
||||
height: 150px;
|
||||
}
|
||||
|
||||
.productoverBox-7 {
|
||||
height: 225px;
|
||||
position: relative;
|
||||
|
||||
.gridTruelifeImg {
|
||||
position: absolute;
|
||||
width: 85%;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.productoverBox-8 {
|
||||
height: 60px;
|
||||
}
|
||||
|
||||
.productoverBox-9 {
|
||||
height: 230px;
|
||||
}
|
||||
|
||||
.productoverBox-10 {
|
||||
height: 150px;
|
||||
}
|
||||
|
||||
.productoverBox-11 {
|
||||
height: 180px;
|
||||
}
|
||||
|
||||
.productoverBox-12 {
|
||||
height: 75px;
|
||||
}
|
||||
|
||||
.PO_box {
|
||||
// background-color: red;
|
||||
height: 100%;
|
||||
> div {
|
||||
|
||||
>div {
|
||||
padding: 1rem 0rem;
|
||||
}
|
||||
|
||||
.box_inner {
|
||||
height: 100%;
|
||||
// height: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.bgBox_Content {
|
||||
background: rgb(236, 236, 236);
|
||||
background: linear-gradient(
|
||||
90deg,
|
||||
rgba(236, 236, 236, 1) 4%,
|
||||
rgba(118, 118, 118, 1) 100%
|
||||
);
|
||||
background: linear-gradient(90deg,
|
||||
rgba(236, 236, 236, 1) 4%,
|
||||
rgba(118, 118, 118, 1) 100%);
|
||||
}
|
||||
|
||||
.box_inner_right {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
|
||||
.box_inner_left {
|
||||
padding-right: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// specsgrid
|
||||
|
||||
.specsgrid {
|
||||
display: grid;
|
||||
height: 100vh;
|
||||
gap: 20px;
|
||||
grid-template-columns: repeat(8, minmax(5%, 1fr));
|
||||
grid-template-rows: repeat(12, minmax(5%, 1fr));
|
||||
|
||||
.specsItem {
|
||||
background-color: red;
|
||||
}
|
||||
|
||||
.specsItem-1 {
|
||||
grid-column: 1/4;
|
||||
grid-row: 1/4;
|
||||
}
|
||||
|
||||
.specsItem-2 {
|
||||
grid-column: 1/4;
|
||||
grid-row: 1/4;
|
||||
}
|
||||
}
|
||||
|
||||
// specsgrid end
|
||||
|
||||
.displayscreenpad {
|
||||
.displayscreenpadContainer {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.displayscreenpadHeading {
|
||||
font-size: 8rem;
|
||||
}
|
||||
|
||||
.displayscreenpadMain {
|
||||
top: -108px;
|
||||
// top: -108px;
|
||||
margin-top: -8%;
|
||||
}
|
||||
|
||||
.displayscreenpadleft {
|
||||
> img {
|
||||
>img {
|
||||
left: -8%;
|
||||
}
|
||||
}
|
||||
|
||||
.displayscreenpadright {
|
||||
> img {
|
||||
>img {
|
||||
right: -10%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.dual_des_heading{
|
||||
.dual_des_heading {
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
.dualLaptop {
|
||||
|
||||
.dualLaptop{
|
||||
width: 100vw;
|
||||
height: 1000px;
|
||||
top:-100px;
|
||||
// height: 1300px;
|
||||
top: -100px;
|
||||
margin-top: 100px;
|
||||
margin-bottom: -100px;
|
||||
position: relative;
|
||||
|
||||
|
||||
.zeroBMain_desP{
|
||||
// overflow-x: hidden;
|
||||
.zeroBMain_desP {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
.zeroBMain_des{
|
||||
|
||||
.zeroBMain_des {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
@@ -154,52 +280,51 @@ $PO_footerText: 0.7rem;
|
||||
padding-right: 9rem;
|
||||
}
|
||||
|
||||
.dualImgs{
|
||||
.dualImgs {
|
||||
position: absolute;
|
||||
|
||||
|
||||
.dualImgsInner{
|
||||
width: 63%;
|
||||
.dualImgsInner {
|
||||
width: 50rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.dualImgsOne{
|
||||
top:0;
|
||||
left: -10%;
|
||||
.dualImgsOne {
|
||||
top: 0;
|
||||
left: -10rem;
|
||||
transform: rotate(343deg);
|
||||
width: 68%;
|
||||
}
|
||||
|
||||
.dualImgsTwo{
|
||||
|
||||
.dualImgsTwo {
|
||||
// top:0;
|
||||
// right: -80%;
|
||||
// transform: rotate(330deg);
|
||||
|
||||
top: 31%;
|
||||
right: -68%;
|
||||
top: 14rem;
|
||||
right: -62%;
|
||||
transform: rotate(339deg);
|
||||
.dualImgsInner{
|
||||
.dualImgsInner {
|
||||
width: 82%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tableLaptop{
|
||||
.tableLaptop {
|
||||
margin-top: 300px;
|
||||
|
||||
// border: 1px solid;
|
||||
height: 90vh;
|
||||
width: 100vw;
|
||||
position: relative;
|
||||
.circleTableLaptop_Heading{
|
||||
|
||||
.circleTableLaptop_Heading {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -311%);
|
||||
}
|
||||
.justTableLaptop{
|
||||
|
||||
.justTableLaptop {
|
||||
position: absolute;
|
||||
width: 86%;
|
||||
top: -10px;
|
||||
@@ -207,104 +332,108 @@ $PO_footerText: 0.7rem;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.circleTableLaptop{
|
||||
background-color: #ECECEC;
|
||||
.circleTableLaptop {
|
||||
background-color: #ececec;
|
||||
height: 70rem;
|
||||
width: 70rem;
|
||||
border-radius: 50%;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
|
||||
.circleTableLaptopTop{
|
||||
|
||||
bottom: -3%;
|
||||
width: 80%;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, 2%);
|
||||
|
||||
.circleTableLaptopTop {
|
||||
bottom: -3%;
|
||||
width: 80%;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, 2%);
|
||||
}
|
||||
}
|
||||
|
||||
.circleTableLaptop_text{
|
||||
.circleTableLaptop_text {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, 168%);
|
||||
|
||||
transform: translate(-50%, 106%);
|
||||
}
|
||||
|
||||
margin-bottom: 300px;
|
||||
}
|
||||
|
||||
.trueLifeDisplay{
|
||||
.trueLifeDisplay_headingHD{
|
||||
>.headingLife{
|
||||
font-size: 6rem;
|
||||
.trueLifeDisplay {
|
||||
.trueLifeDisplay_headingHD {
|
||||
>.headingLife {
|
||||
font-size: 6rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.trueLifeDisplay_des{
|
||||
padding: 0 10rem;
|
||||
|
||||
}
|
||||
.trueLifeDisplay_des {
|
||||
padding: 0 10rem;
|
||||
}
|
||||
}
|
||||
|
||||
.font_p_Dual{
|
||||
.font_p_Dual {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.controlPanel{
|
||||
|
||||
.tableLaptopTwo{
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
background-image: url("../../dist/assets/imgs/sectiontest.png");
|
||||
background-color: white;
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
.controlPanel {
|
||||
margin-top: 10rem;
|
||||
padding-bottom: 550px;
|
||||
.controlPanel_des{
|
||||
padding-bottom: 300px;
|
||||
|
||||
.controlPanel_des {
|
||||
position: absolute;
|
||||
top: -170px;
|
||||
left: 80px;
|
||||
|
||||
}
|
||||
.bgControlpanel{
|
||||
|
||||
.bgControlpanel {
|
||||
min-height: 100vh;
|
||||
background-color: #ECECEC;
|
||||
background-color: #ececec;
|
||||
border-radius: 157px;
|
||||
position: relative;
|
||||
|
||||
.bgControlpaneltabs{
|
||||
|
||||
.bgControlpaneltabs {
|
||||
position: absolute;
|
||||
top: 100px;
|
||||
right: 0;
|
||||
|
||||
.nav-tabs{
|
||||
.nav-tabs {
|
||||
border-bottom: 1px solid;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
.nav-item{
|
||||
|
||||
.nav-item {
|
||||
position: relative;
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.nav-tabs .nav-link {
|
||||
position: relative;
|
||||
color: black;
|
||||
font-weight: 500;
|
||||
position: relative;
|
||||
color: black;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.nav-tabs .nav-link.active{
|
||||
|
||||
.nav-tabs .nav-link.active {
|
||||
border: none;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
|
||||
.nav-tabs .nav-link.active::before {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.nav-item .nav-link::before{
|
||||
content: '';
|
||||
|
||||
.nav-item .nav-link::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 5px;
|
||||
@@ -315,26 +444,431 @@ $PO_footerText: 0.7rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
.designedProLaptop{
|
||||
position: relative;
|
||||
.designedProLaptop_title{
|
||||
position: absolute;
|
||||
top: -200px;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
|
||||
|
||||
}
|
||||
.designedProLaptop_title_text{
|
||||
font-size: 10rem;
|
||||
}
|
||||
.designedProLaptop_img{
|
||||
|
||||
|
||||
.dragondisplay {
|
||||
position: relative;
|
||||
background: rgb(255, 255, 255);
|
||||
background: linear-gradient(184deg,
|
||||
rgba(255, 255, 255, 1) 4%,
|
||||
rgba(235, 255, 133, 1) 100%);
|
||||
overflow: hidden;
|
||||
|
||||
.dragondisplay_heading {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 700px;
|
||||
bottom: -4%;
|
||||
margin: auto;
|
||||
width: 100%;
|
||||
|
||||
>h1 {
|
||||
font-size: 8rem;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.dragondisplay_des {
|
||||
max-width: 600px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 13%;
|
||||
padding: 4rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.intelGen {
|
||||
.intelGenUL {
|
||||
max-width: 250px;
|
||||
gap: 8rem;
|
||||
|
||||
.intelGenULHeading {
|
||||
font-size: 1.8rem;
|
||||
font-weight: 700;
|
||||
border-bottom: 2px solid;
|
||||
}
|
||||
}
|
||||
|
||||
.cpuSection {
|
||||
background-image: url("./../../dist/assets/imgs/productoverview/cpu.png");
|
||||
background-color: white;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
}
|
||||
}
|
||||
|
||||
.osPlusSoftware {
|
||||
width: 100vw;
|
||||
height: 140vh;
|
||||
margin-top: 14rem;
|
||||
|
||||
.osContianer {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: 30%;
|
||||
|
||||
.osContianer_des_fontParent {
|
||||
position: relative;
|
||||
top: -8%;
|
||||
}
|
||||
|
||||
.osContianer_des_font {
|
||||
font-size: 2rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.osContianerHeading {
|
||||
position: relative;
|
||||
top: -15%;
|
||||
}
|
||||
|
||||
.osContianerImg {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media (max-width:1200px) {
|
||||
|
||||
// section
|
||||
|
||||
.productOverview {
|
||||
.p-6{
|
||||
padding:0;
|
||||
}
|
||||
.overviewProductFullTitle{
|
||||
padding: 2rem 5rem;
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
// section
|
||||
.productOverview {
|
||||
>div {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
// seciton
|
||||
.dualLaptop .dualImgsTwo .dualImgsInner {
|
||||
transform: rotate(339deg) translateX(57%) translateY(55%);
|
||||
}
|
||||
// section
|
||||
|
||||
.productOverview .overviewProductFullTitle {
|
||||
font-size: 1rem;
|
||||
padding: 2rem 0rem;
|
||||
}
|
||||
|
||||
.productOverview .overviewProductDes {
|
||||
font-size: 0.7rem;
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
||||
.PO_galleryContainer .PO_gallery_display .PO_gallery_display_img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.PO_galleryContainer .PO_gallery_display {
|
||||
min-height: 300px;
|
||||
}
|
||||
|
||||
.PO_gallery_box {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.PO_galleryContainer .PO_gallery_box_inner {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.productoverBox.px-6 {
|
||||
padding: 1rem;
|
||||
margin: 0;
|
||||
height: max-content;
|
||||
}
|
||||
|
||||
// ssection end
|
||||
|
||||
.displayscreenpad {
|
||||
.displayscreenpadHeading {
|
||||
font-size: 4rem;
|
||||
}
|
||||
}
|
||||
|
||||
// section end
|
||||
|
||||
.dualLaptop {
|
||||
.dual_des_heading {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.zeroBMain_des {
|
||||
padding-right: 0;
|
||||
|
||||
.zeroBMain_desP {
|
||||
font-size: 0.8rem;
|
||||
max-width: 400px;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
//section
|
||||
.controlPanel {
|
||||
|
||||
.controlPanel_des{
|
||||
top: -110px;
|
||||
>h1 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media (max-width:790px) {
|
||||
|
||||
.productOverview {
|
||||
.p-6{
|
||||
padding:0;
|
||||
}
|
||||
.overviewProductFullTitle{
|
||||
padding: 2rem 0;
|
||||
font-size: 1rem;
|
||||
}
|
||||
.overviewProductDes{
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
}
|
||||
|
||||
// section
|
||||
|
||||
|
||||
// section
|
||||
|
||||
.displayscreenpad {
|
||||
.displayscreenpadHeading {
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
.dualLaptop {
|
||||
.dual_des_heading {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.zeroBMain_des {
|
||||
// padding-right: 3rem;
|
||||
|
||||
.zeroBMain_desP {
|
||||
font-size: 0.7rem;
|
||||
max-width: 400px;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// section
|
||||
.controlPanel{
|
||||
.controlPanel_des{
|
||||
|
||||
>h1 {
|
||||
font-size: 1.9rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media (max-width:670px) {
|
||||
.zeroBMain_des{
|
||||
display: none;
|
||||
}
|
||||
.mobileAw{
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
// media quiue
|
||||
|
||||
@include respond(phone) {
|
||||
.p-6 {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.productoverviewmain .displayscreenpad .displayscreenpadHeading {
|
||||
font-size: 5rem;
|
||||
}
|
||||
|
||||
.banner_heading_4 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
|
||||
|
||||
// section 3
|
||||
.displayscreenpad {
|
||||
.displayscreenpadHeading {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.displayscreenpadMain {
|
||||
top: -26px;
|
||||
}
|
||||
}
|
||||
|
||||
// section 5
|
||||
.tableLaptop {
|
||||
margin-top: 20%;
|
||||
margin-bottom: 0;
|
||||
height: max-content;
|
||||
|
||||
.dual_des_heading {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.circleTableLaptop {
|
||||
height: 300px;
|
||||
}
|
||||
|
||||
.circleTableLaptop .circleTableLaptopTop {
|
||||
bottom: -3%;
|
||||
width: 80%;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, 2%);
|
||||
}
|
||||
|
||||
.circleTableLaptop_Heading {
|
||||
position: absolute;
|
||||
top: 4%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, 0);
|
||||
}
|
||||
|
||||
.justTableLaptop {
|
||||
position: absolute;
|
||||
width: 86%;
|
||||
top: 26%;
|
||||
right: 30px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.circleTableLaptop_text {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, 0%);
|
||||
}
|
||||
}
|
||||
|
||||
.trueLifeDisplay {
|
||||
margin-top: 50px;
|
||||
|
||||
.trueLifeDisplay_headingHD {
|
||||
|
||||
>h1,
|
||||
.headingLife {
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
.trueLifeDisplay_des {
|
||||
padding: 1rem;
|
||||
|
||||
.font_p_Dual {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// section 6
|
||||
.controlPanel {
|
||||
margin-top: 3rem;
|
||||
padding-bottom: 100px;
|
||||
|
||||
//heading h1
|
||||
>.p-5 {
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.bgControlpanel {
|
||||
min-height: 85vh;
|
||||
|
||||
.bgControlpaneltabs {
|
||||
top: 55%;
|
||||
right: 0;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
}
|
||||
|
||||
.controlPanel_des {
|
||||
top:0%;
|
||||
width: 100%;
|
||||
left: 50%;
|
||||
text-align: center;
|
||||
transform: translateX(-50%);
|
||||
margin: 1rem 0;
|
||||
margin: 1rem 0;
|
||||
|
||||
>h1 {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
}
|
||||
|
||||
.bgControlpaneltabs {
|
||||
padding: 0.1rem !important;
|
||||
padding-top: 3rem !important;
|
||||
|
||||
>.nav-tabs {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
>ul {
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
#tabLaptopContent {
|
||||
padding: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// section 7
|
||||
.proSection{
|
||||
.designedProLaptop_title{
|
||||
.designedProLaptop_title_text {
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// // popupKeyboard
|
||||
// .popupKeyboard {
|
||||
// padding: 1rem;
|
||||
|
||||
// .popupKeyboard_heading {
|
||||
// >h1 {
|
||||
// font-size: 2rem;
|
||||
// }
|
||||
// }
|
||||
|
||||
// .popupKeyboard_hParent .popupKeyboard_des {
|
||||
// max-width: max-content;
|
||||
// font-size: 0.9rem;
|
||||
// }
|
||||
// }
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
.proSection{
|
||||
.designedProLaptop_title > .designedProLaptop_title_text{
|
||||
font-size: 6rem;
|
||||
}
|
||||
|
||||
.designedProLaptopList{
|
||||
> li{
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width:1200px) {
|
||||
.proSection{
|
||||
.designedProLaptopList{
|
||||
> li{
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@media (max-width:768px){
|
||||
.proSection{
|
||||
padding: 1rem;
|
||||
.designedProLaptop_title > .designedProLaptop_title_text{
|
||||
font-size: 4rem;
|
||||
}
|
||||
|
||||
.designedProLaptopList {
|
||||
width: 100%;
|
||||
padding: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width:576px) {
|
||||
.proSection{
|
||||
.designedProLaptop_title > .designedProLaptop_title_text{
|
||||
font-size: 2.5rem;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
.dragondisplay {
|
||||
position: relative;
|
||||
background: rgb(255, 255, 255);
|
||||
background: linear-gradient(184deg,
|
||||
rgba(255, 255, 255, 1) 4%,
|
||||
rgba(235, 255, 133, 1) 100%);
|
||||
overflow: hidden;
|
||||
|
||||
.dragondisplay_heading {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
margin: auto;
|
||||
width: 100%;
|
||||
|
||||
>h1 {
|
||||
font-size: 8rem;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.dragondisplay_des {
|
||||
max-width: 600px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 13%;
|
||||
padding: 4rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width:1200px) {
|
||||
.dragondisplay{
|
||||
.dragondisplay_heading{
|
||||
>h1 {
|
||||
font-size: 4rem;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media (max-width:768px) {
|
||||
.dragondisplay{
|
||||
.dragondisplay_heading{
|
||||
>h1 {
|
||||
font-size: 3rem;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width:576px) {
|
||||
.dragondisplay{
|
||||
.dragondisplay_heading{
|
||||
>h1 {
|
||||
font-size: 1.5rem;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,88 @@
|
||||
.lensAnwi {
|
||||
.box_lens {
|
||||
.anwi_BoxLen {
|
||||
border-radius: 40px;
|
||||
-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.171) inset;
|
||||
-moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.171) inset;
|
||||
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.171) inset;
|
||||
}
|
||||
|
||||
.box_lens_img {
|
||||
width: 45%;
|
||||
}
|
||||
|
||||
.screenpadLens {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.lenHeading{
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.anwi_BoxLen {
|
||||
gap: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width:1400px) {
|
||||
.lensAnwi {
|
||||
.box_lens {
|
||||
.lenHeading{
|
||||
font-size: 1rem;
|
||||
}
|
||||
.screenpadLens {
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width:1200px) {
|
||||
.lensAnwi {
|
||||
.row_lensAnwi {
|
||||
padding: 2rem;
|
||||
}
|
||||
.box_lens {
|
||||
.lenHeading{
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
.screenpadLens {
|
||||
font-size: 0.5rem;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media (max-width:768px) {
|
||||
.lensAnwi {}
|
||||
}
|
||||
|
||||
@media (max-width:576px) {
|
||||
|
||||
|
||||
|
||||
.lensAnwi {
|
||||
.box_lens {
|
||||
.box_lens_img {
|
||||
width: 25%;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.dragondisplay {
|
||||
.dragondisplay_heading {
|
||||
>h1 {
|
||||
font-size: 1.5rem;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
// pop up keyboard
|
||||
.popupKeyboard {
|
||||
position: relative;
|
||||
overflow-x: hidden;
|
||||
padding-top: 11rem;
|
||||
.popupKeyboard_hParent {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.popupKeyboard_heading {
|
||||
>h1{
|
||||
font-size: 9rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@media (max-width:1200px) {
|
||||
.popupKeyboard {
|
||||
.popupKeyboard_heading {
|
||||
>h1{
|
||||
font-size: 5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@media (max-width:768px) {
|
||||
.controlPanel{
|
||||
padding-bottom: 100px;
|
||||
}
|
||||
.popupKeyboard {
|
||||
|
||||
.popupKeyboard_heading {
|
||||
padding: 1rem;
|
||||
>h1{
|
||||
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
}
|
||||
.popupKeyboard_des {
|
||||
padding: 1rem;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.popupKeyboard_hParent {
|
||||
padding: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width:576px) {
|
||||
.popupKeyboard {
|
||||
|
||||
.popupKeyboard_heading {
|
||||
padding: 1rem;
|
||||
>h1{
|
||||
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.popupKeyboard_des {
|
||||
padding: 2rem;
|
||||
padding-top: 0;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
.professinalGrade {
|
||||
.professinalGradeImgContainer {
|
||||
background-image: url("./../../dist/assets/imgs/productoverview/promask.png");
|
||||
background-color: white;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
.professinalGradeImg {
|
||||
@include absCenter;
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width:1400px) {
|
||||
.professinalGrade{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width:1200px) {
|
||||
.professinalGrade{
|
||||
h1{
|
||||
font-size: 3rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media (max-width:768px) {
|
||||
.professinalGrade{
|
||||
h1{
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.font_p_Dual{
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width:576px) {
|
||||
.professinalGrade{
|
||||
p{
|
||||
padding-left: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,129 @@
|
||||
.stunningSound {
|
||||
position: relative;
|
||||
padding-top: 15rem;
|
||||
overflow-x: hidden;
|
||||
.stunningSound_heading {
|
||||
position: absolute;
|
||||
z-index: -1;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
||||
>h1 {
|
||||
font-size: 10rem;
|
||||
}
|
||||
}
|
||||
|
||||
.stunningSound_des {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 30%;
|
||||
transform: translate(0%, 0%);
|
||||
|
||||
|
||||
max-width: 400px;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
// @media (max-width:1400px) {}
|
||||
|
||||
@media (max-width:1200px) {
|
||||
.stunningSound {
|
||||
|
||||
|
||||
.stunningSound_heading {
|
||||
|
||||
|
||||
>h1 {
|
||||
font-size: 7rem;
|
||||
}
|
||||
}
|
||||
|
||||
.stunningSound_des{
|
||||
|
||||
padding-right: 1rem;
|
||||
max-width: 300px;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@media (max-width:1000px) {
|
||||
.stunningSound {
|
||||
|
||||
|
||||
.stunningSound_heading {
|
||||
|
||||
top: 20%;
|
||||
|
||||
>h1 {
|
||||
font-size: 5rem;
|
||||
}
|
||||
}
|
||||
|
||||
.stunningSound_des {
|
||||
|
||||
top: 40%;
|
||||
right:0;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@media (max-width:768px) {
|
||||
.stunningSound {
|
||||
|
||||
|
||||
.stunningSound_heading {
|
||||
|
||||
|
||||
>h1 {
|
||||
font-size: 4rem;
|
||||
}
|
||||
}
|
||||
|
||||
.stunningSound_des {
|
||||
max-width: 270px;
|
||||
top: 50%;
|
||||
right: 0;
|
||||
p{
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width:576px) {
|
||||
.stunningSound {
|
||||
|
||||
|
||||
.stunningSound_heading {
|
||||
|
||||
top: 15%;
|
||||
>h1 {
|
||||
font-size: 2rem;
|
||||
padding: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
.stunningSound_des {
|
||||
padding: 2rem;
|
||||
top: 25%;
|
||||
max-width: 100%;
|
||||
left: 0;
|
||||
// top: 50%;
|
||||
// right: -19%;
|
||||
// p{
|
||||
// font-size: 1rem;
|
||||
// }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
.circleTableLaptop_Heading {
|
||||
top: 20%;
|
||||
}
|
||||
|
||||
.circleTableLaptop_text{
|
||||
bottom: 25%;
|
||||
>div{
|
||||
padding: 0px 22%;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media (max-width:1300px) {
|
||||
.circleTableLaptop_text {
|
||||
bottom: 18%;
|
||||
>div{
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width:1000px) {
|
||||
.circleTableLaptop_Heading {
|
||||
h1{
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
.circleTableLaptop_text {
|
||||
bottom: 25%;
|
||||
>div{
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width:600px) {
|
||||
.circleTableLaptop_Heading {
|
||||
top: 0;
|
||||
h1{
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,73 @@
|
||||
|
||||
.wifiSection {
|
||||
overflow-x: hidden;
|
||||
position: relative;
|
||||
|
||||
// .wifiSectionImg {
|
||||
// width: 100vw;
|
||||
// height: 100vh;
|
||||
// margin: 10rem 0;
|
||||
// background-image: url("./../../dist/assets/imgs/productoverview/wifilap.png");
|
||||
// background-color: white;
|
||||
// background-size: cover;
|
||||
// background-repeat: no-repeat;
|
||||
// background-position: center;
|
||||
// }
|
||||
.wifiSectionDes{
|
||||
display: none;
|
||||
}
|
||||
.textWifiContainer {
|
||||
position: relative;
|
||||
|
||||
.wifiSection_des {
|
||||
max-width: 500px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: -48%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.textWifiContainerHeading {
|
||||
>h1 {
|
||||
font-size: 8rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@media (max-width:1200px) {
|
||||
.wifiSection{
|
||||
.textWifiContainer {
|
||||
.textWifiContainerHeading {
|
||||
>h1 {
|
||||
font-size: 5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width:1000px) {
|
||||
.wifiSection{
|
||||
.textWifiContainer {
|
||||
display: none;
|
||||
|
||||
}
|
||||
|
||||
.wifiSectionDes{
|
||||
padding: 2rem;
|
||||
display: block;
|
||||
.wifiSection_des {
|
||||
>p{
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
+1082
-202
Datei-Diff unterdrückt, da er zu groß ist
Diff laden
Dateidiff unterdrückt, weil mindestens eine Zeile zu lang ist
+23
-3
@@ -8,9 +8,18 @@
|
||||
@import "components/button";
|
||||
// pages
|
||||
@import "pages/productOverview";
|
||||
@import "pages/home";
|
||||
@import "pages/shopping-cart";
|
||||
@import "pages/productOverview/designedpro";
|
||||
@import "pages/productOverview/popupkeyboard";
|
||||
@import "pages/productOverview/dragondisplay";
|
||||
@import "pages/productOverview/lens";
|
||||
@import "pages/productOverview/professinalGrade";
|
||||
@import "pages/productOverview/stunningsound";
|
||||
@import "pages/productOverview/wifisection";
|
||||
@import "pages/productOverview/tablesection";
|
||||
|
||||
// @import "pages/home";
|
||||
// @import "pages/shopping-cart";
|
||||
@import "pages/allInOne";
|
||||
/*
|
||||
0 - 600px: Phone
|
||||
600 - 900px: Tablet portrait
|
||||
@@ -185,4 +194,15 @@ body {
|
||||
line-height: 2rem;
|
||||
font-family: "Satoshi", sans-serif;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// sachin
|
||||
/* footer */
|
||||
.footer-wrapper {
|
||||
background-color: rgb(0, 0, 0);
|
||||
border-radius: 0 275px 0 0;
|
||||
clip-path: polygon(100% 0%, 100% 0%, 81% 100%, 92% -95%, 100% 100%, 0 100%, 0% 70%, 0 0);
|
||||
}
|
||||
.footer-wrapper li {
|
||||
line-height: 2rem;
|
||||
}
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren