Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

buttons hover animation modified #102

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 19 additions & 18 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -551,24 +551,21 @@ Style For Banner section Buttons

.text-bg a {
font-size: 17px;
background-color: transparent;
border: #fff solid 2px;
color: #fff;
color: #f7c3cc;
font-weight: 500;
padding: 4px 0px;
border-radius: 6px;
width: 100%;
max-width: 215px;
text-align: center;
display: inline-block;
transition: ease-in all 0.5s;
margin-right: 10px;
}

.text-bg a:hover {
background-color: #de5a5a;
color: #fff;
transition: ease-in all 0.5s;
transition: ease-in all 0.2s;
}

/* colors_used: var(--color-pink), #de5a5a (dark pink), 361C16 (brown)*/
Expand Down Expand Up @@ -810,7 +807,7 @@ Style For Customer Review section
}

.read_more:hover {
background: #000;
background: pink;
color: #fff;
transition: ease-in all 0.5s;
}
Expand Down Expand Up @@ -967,11 +964,11 @@ Style For Contact Us section
border: 1px solid #482b24;
text-transform: capitalize;
margin-top: 3px;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-ms-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
-webkit-transition: 0.2s ease;
-moz-transition: 0.2s ease;
-ms-transition: 0.2s ease;
-o-transition: 0.2s ease;
transition: 0.2s ease;
}

.contact-form .single-contact-btn button.contact-btn,
Expand All @@ -983,11 +980,11 @@ Style For Contact Us section
letter-spacing: 2.5px;
border-radius: 0px;
font-size: 14px;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-ms-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
-webkit-transition: 0.3s ease;
-moz-transition: 0.3s ease;
-ms-transition: 0.3s ease;
-o-transition: 0.3s ease;
transition: 0.3s ease;
}

.single-contact-btn:hover button.contact-btn {
Expand Down Expand Up @@ -1185,12 +1182,16 @@ ul.social_icon li a:hover {
display: block;
font-weight: 500;
text-transform: uppercase;
transition: 1ms;
-webkit-transition: 0.2s ease;
-moz-transition: 0.2s ease;
-ms-transition: 0.2s ease;
-o-transition: 0.2s ease;
transition: 0.2s ease;
}

.sub_btn:hover {
background-color: #000;
transition: ease-in all 0.5s;
transition: ease-in-out all 0.2s;
color: #fff;
}

Expand Down
2 changes: 1 addition & 1 deletion css/utils.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
padding: 0;
text-decoration: none !important;
font-family: "Poppins", sans-serif;
transition: 0.2s;
transition: 0.1s ease;
}
a:hover {
color: var(--pink) !important;
Expand Down