From f986607dfe9d0d9a00c0edd75aa6f6f36c49b823 Mon Sep 17 00:00:00 2001 From: Roman Pyrih Date: Mon, 25 May 2026 11:02:29 +0200 Subject: [PATCH] Save --- .../hello-elementor/assets/css/custom.css | 16 +++++++++++++ .../hello-elementor/assets/css/custom.css.map | 2 +- .../hello-elementor/assets/css/custom.scss | 24 +++++++++++++++++++ 3 files changed, 41 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/hello-elementor/assets/css/custom.css b/wp-content/themes/hello-elementor/assets/css/custom.css index 57eef8a..4dc6b0f 100644 --- a/wp-content/themes/hello-elementor/assets/css/custom.css +++ b/wp-content/themes/hello-elementor/assets/css/custom.css @@ -12,6 +12,10 @@ p:last-child { margin-bottom: 0; } +u { + text-decoration-color: #a25fb1; +} + .btn-1 { width: -moz-fit-content; width: fit-content; @@ -21,4 +25,16 @@ p:last-child { } .btn-1:hover .elementor-button-icon { margin-left: 5px; +} + +body.page-id-6 .box-3 .box-3--left:hover { + flex: 2; +} +body.page-id-6 .box-3 .box-3--right:hover { + flex: 2; +} +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); }/*# 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 8e3972b..51b926f 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,uBAAA;EAAA,kBAAA;ACFD;ADIC;EACC,iCAAA;ACFF;ADME;EACC,gBAAA;ACJH","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;ADaG;EACC,OAAA;ACXJ;ADcE;;EAEC,OAAA;EACA,kDAAA;ACZH","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 e5c796a..59101e4 100644 --- a/wp-content/themes/hello-elementor/assets/css/custom.scss +++ b/wp-content/themes/hello-elementor/assets/css/custom.scss @@ -15,6 +15,10 @@ p { } } +u { + text-decoration-color: #a25fb1; +} + .btn-1 { width: fit-content; @@ -28,3 +32,23 @@ p { } } } + +body.page-id-6 { + .box-3 { + .box-3--left { + &:hover { + flex: 2; + } + } + .box-3--right { + &:hover { + flex: 2; + } + } + .box-3--left, + .box-3--right { + flex: 1; + transition: all 700ms cubic-bezier(0.4, 0, 0.2, 1); + } + } +}