Save
This commit is contained in:
@@ -30,11 +30,40 @@ u {
|
||||
body.page-id-6 .box-3 .box-3--left:hover {
|
||||
flex: 2;
|
||||
}
|
||||
body.page-id-6 .box-3 .box-3--left:hover::before {
|
||||
opacity: 0;
|
||||
}
|
||||
body.page-id-6 .box-3 .box-3--left:hover .box-3--tile-img img {
|
||||
filter: none;
|
||||
}
|
||||
body.page-id-6 .box-3 .box-3--right:hover {
|
||||
flex: 2;
|
||||
}
|
||||
body.page-id-6 .box-3 .box-3--right:hover::before {
|
||||
opacity: 0;
|
||||
}
|
||||
body.page-id-6 .box-3 .box-3--right:hover .box-3--tile-img img {
|
||||
filter: none;
|
||||
}
|
||||
body.page-id-6 .box-3 .box-3--left,
|
||||
body.page-id-6 .box-3 .box-3--right {
|
||||
flex: 1;
|
||||
transition: all 700ms cubic-bezier(0.4, 0, 0.2, 1);
|
||||
}
|
||||
body.page-id-6 .box-3 .box-3--left::before,
|
||||
body.page-id-6 .box-3 .box-3--right::before {
|
||||
transition: all 700ms cubic-bezier(0.4, 0, 0.2, 1);
|
||||
}
|
||||
body.page-id-6 .box-3 .box-3--left .box-3--tile-img img,
|
||||
body.page-id-6 .box-3 .box-3--right .box-3--tile-img img {
|
||||
transition: all 700ms cubic-bezier(0.4, 0, 0.2, 1);
|
||||
}
|
||||
body.page-id-6 .box-5--tiles .elementor-widget-icon-box {
|
||||
padding: 40px;
|
||||
}
|
||||
body.page-id-6 .box-5--tiles .elementor-widget-icon-box:nth-child(2n+1) {
|
||||
border-right: 1px solid #e4dee4;
|
||||
}
|
||||
body.page-id-6 .box-5--tiles .elementor-widget-icon-box:nth-child(1), body.page-id-6 .box-5--tiles .elementor-widget-icon-box:nth-child(2), body.page-id-6 .box-5--tiles .elementor-widget-icon-box:nth-child(3), body.page-id-6 .box-5--tiles .elementor-widget-icon-box:nth-child(4) {
|
||||
border-bottom: 1px solid #e4dee4;
|
||||
}/*# sourceMappingURL=custom.css.map */
|
||||
@@ -1 +1 @@
|
||||
{"version":3,"sources":["custom.scss","custom.css"],"names":[],"mappings":"AAAA;EACC,eAAA;EACA,eAAA;EACA,YAAA;EACA,iDAAA;EACA,2CAAA;EAEA,sDAAA;EACA,2BAAA;ACAD;;ADIC;EACC,gBAAA;ACDF;;ADKA;EACC,8BAAA;ACFD;;ADKA;EACC,uBAAA;EAAA,kBAAA;ACFD;ADIC;EACC,iCAAA;ACFF;ADME;EACC,gBAAA;ACJH;;ADYG;EACC,OAAA;ACTJ;ADaG;EACC,OAAA;ACXJ;ADcE;;EAEC,OAAA;EACA,kDAAA;ACZH","file":"custom.css"}
|
||||
{"version":3,"sources":["custom.scss","custom.css"],"names":[],"mappings":"AAAA;EACC,eAAA;EACA,eAAA;EACA,YAAA;EACA,iDAAA;EACA,2CAAA;EAEA,sDAAA;EACA,2BAAA;ACAD;;ADIC;EACC,gBAAA;ACDF;;ADKA;EACC,8BAAA;ACFD;;ADKA;EACC,uBAAA;EAAA,kBAAA;ACFD;ADIC;EACC,iCAAA;ACFF;ADME;EACC,gBAAA;ACJH;;ADYG;EACC,OAAA;ACTJ;ADWI;EACC,UAAA;ACTL;ADYK;EACC,YAAA;ACVN;ADgBG;EACC,OAAA;ACdJ;ADeI;EACC,UAAA;ACbL;ADgBK;EACC,YAAA;ACdN;ADmBE;;EAEC,OAAA;EACA,kDAAA;ACjBH;ADmBG;;EACC,kDAAA;AChBJ;ADmBI;;EACC,kDAAA;AChBL;ADuBE;EACC,aAAA;ACrBH;ADuBG;EACC,+BAAA;ACrBJ;ADuBG;EAIC,gCAAA;ACxBJ","file":"custom.css"}
|
||||
@@ -38,17 +38,59 @@ body.page-id-6 {
|
||||
.box-3--left {
|
||||
&:hover {
|
||||
flex: 2;
|
||||
|
||||
&::before {
|
||||
opacity: 0;
|
||||
}
|
||||
.box-3--tile-img {
|
||||
img {
|
||||
filter: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.box-3--right {
|
||||
&:hover {
|
||||
flex: 2;
|
||||
&::before {
|
||||
opacity: 0;
|
||||
}
|
||||
.box-3--tile-img {
|
||||
img {
|
||||
filter: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.box-3--left,
|
||||
.box-3--right {
|
||||
flex: 1;
|
||||
transition: all 700ms cubic-bezier(0.4, 0, 0.2, 1);
|
||||
|
||||
&::before {
|
||||
transition: all 700ms cubic-bezier(0.4, 0, 0.2, 1);
|
||||
}
|
||||
.box-3--tile-img {
|
||||
img {
|
||||
transition: all 700ms cubic-bezier(0.4, 0, 0.2, 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.box-5--tiles {
|
||||
.elementor-widget-icon-box {
|
||||
padding: 40px;
|
||||
|
||||
&:nth-child(2n + 1) {
|
||||
border-right: 1px solid #e4dee4;
|
||||
}
|
||||
&:nth-child(1),
|
||||
&:nth-child(2),
|
||||
&:nth-child(3),
|
||||
&:nth-child(4) {
|
||||
border-bottom: 1px solid #e4dee4;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user