Skip to content

Commit 2984bb3

Browse files
Add smoot hover to buttons
Update 2.3 Add smooth hover to order a service button. Add smooth hover to categories button.
1 parent 8ef26b4 commit 2984bb3

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

style.css

+10
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
--grey-text-color: #757575;
55
--footer-efectivity-substrate-color: #2F303A;
66
--our-command-substrate: #F5F4FA;
7+
--our-command-substrate-hover: #e9e6e6;
78
--efectivity-trans-color: #2e2f3b3f;
89
}
910

@@ -32,7 +33,11 @@
3233
/* margin-bottom: 30px; */
3334
letter-spacing: 6%;
3435
border-radius: 4px;
36+
transition: background-color 0.3s ease, transform 0.3s ease;
37+
}
3538

39+
.active-now:hover{
40+
background-color: var(--accent-color-hover);
3641
}
3742

3843

@@ -124,6 +129,7 @@ footer {
124129
font-size: 16px;
125130
font-weight: 700;
126131
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
132+
transition: background-color 0.3s ease, transform 0.3s ease;
127133
/* line-height: 30px; */
128134
/* margin-bottom: 30px; */
129135
/* letter-spacing: 6%; */
@@ -187,8 +193,12 @@ footer {
187193
/* margin-bottom: 30px; */
188194
letter-spacing: 6%;
189195
border-radius: 4px;
196+
transition: background-color 0.3s ease, transform 0.3s ease;
190197
}
191198

199+
.active-ground:hover{
200+
background-color: var(--our-command-substrate-hover);
201+
}
192202

193203
.active {
194204
color: rgb(33, 33, 33);

0 commit comments

Comments
 (0)