From aff8c9c0265c4a601e6421a03a3254a387eae9f7 Mon Sep 17 00:00:00 2001 From: sachinganesh Date: Mon, 6 Feb 2023 18:56:03 +0530 Subject: [PATCH] code aded --- styles/base/_utilities.scss | 4 +++ styles/pages/_home.scss | 1 + styles/style.scss | 72 +++++++++++++++++++++++++++++++------ 3 files changed, 66 insertions(+), 11 deletions(-) diff --git a/styles/base/_utilities.scss b/styles/base/_utilities.scss index 92535ce..b909d64 100644 --- a/styles/base/_utilities.scss +++ b/styles/base/_utilities.scss @@ -118,6 +118,10 @@ .padding_top_13{ padding-top: 13rem; } + +.padding_bottom_ONE_FIVE{ + padding-bottom: 1.5rem; +} // heights .h-10{ diff --git a/styles/pages/_home.scss b/styles/pages/_home.scss index 74ea12c..81e6577 100644 --- a/styles/pages/_home.scss +++ b/styles/pages/_home.scss @@ -272,6 +272,7 @@ justify-content: center !important; [alt=footer-rocket-img]{ cursor: pointer; + width: 70px; } .partners-img{ height:60px; diff --git a/styles/style.scss b/styles/style.scss index d19b131..b340196 100644 --- a/styles/style.scss +++ b/styles/style.scss @@ -266,17 +266,6 @@ $background-color_2: #fff; margin-top: 0; } } - .owl-carousel { - .owl-dots{ - display: none; - } - .owl-item { - // h6 { - // text-align: left !important; - // } - - } - } } .navbar-toggler { color: $color_1; @@ -318,6 +307,49 @@ $background-color_2: #fff; } } } +@media (max-width:991px) { + #navbar-head{ + .accordion-button:not(.collapsed){ + background-color: #fff; + color:rgb(0, 0, 0); + box-shadow: none; + font-weight: bold; + } + .accordion-button{ + font-family: "Satoshi", sans-serif; + } + .accordion-body { + ul{ + li{ + font-size: 1rem; + font-family: "Satoshi", sans-serif; + color: #635c5c; + line-height: 2.5rem; + } + } + } + .accordion-button:focus{ + // border-color:#ffffff00; + box-shadow:none + } + .accordion-button::after { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e"); + transform: scale(.7) !important; + } + .accordion-button:not(.collapsed)::after { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e"); + } + } + .delivery-to-sec{ + .d-flex{ + font-size: 0.7rem; + } + .button_dark{ + font-size: 0.7rem; + } + } + +} #footer-head{ .accordion-item{ border: 1px solid; @@ -327,3 +359,21 @@ $background-color_2: #fff; } } + +// footer +.footer-socailImg{ + width: 30px; +} + +.footer-rkt:hover{ + animation: rocketRotate 2s; +} + +@keyframes rocketRotate { + from { + transform: rotate(0); + } + to { + transform: rotate(360deg); + } + } \ No newline at end of file