diff --git a/wp-content/themes/hello-elementor/assets/css/custom.css b/wp-content/themes/hello-elementor/assets/css/custom.css index 4dc6b0f..b498c70 100644 --- a/wp-content/themes/hello-elementor/assets/css/custom.css +++ b/wp-content/themes/hello-elementor/assets/css/custom.css @@ -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 */ \ No newline at end of file diff --git a/wp-content/themes/hello-elementor/assets/css/custom.css.map b/wp-content/themes/hello-elementor/assets/css/custom.css.map index 51b926f..91dc377 100644 --- a/wp-content/themes/hello-elementor/assets/css/custom.css.map +++ b/wp-content/themes/hello-elementor/assets/css/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"} \ No newline at end of file +{"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"} \ No newline at end of file diff --git a/wp-content/themes/hello-elementor/assets/css/custom.scss b/wp-content/themes/hello-elementor/assets/css/custom.scss index 59101e4..5053fc7 100644 --- a/wp-content/themes/hello-elementor/assets/css/custom.scss +++ b/wp-content/themes/hello-elementor/assets/css/custom.scss @@ -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; + } } } }