Spaces:
Sleeping
Sleeping
Update static/style.css
Browse files- static/style.css +7 -3
static/style.css
CHANGED
@@ -32,7 +32,7 @@ body {
|
|
32 |
}
|
33 |
|
34 |
.navigation button {
|
35 |
-
background: #
|
36 |
border: none;
|
37 |
border-radius: 4px;
|
38 |
color: #fff;
|
@@ -40,18 +40,22 @@ body {
|
|
40 |
font-size: 14px; /* Smaller font size for Previous and Next */
|
41 |
padding: 8px 12px;
|
42 |
margin: 5px;
|
|
|
43 |
}
|
44 |
|
45 |
#flipBtn {
|
46 |
-
font-size:
|
47 |
-
padding: 10px
|
48 |
background: #007BFF;
|
|
|
49 |
}
|
50 |
|
51 |
#flipBtn:hover {
|
52 |
background: #0056b3;
|
|
|
53 |
}
|
54 |
|
55 |
.navigation button:hover {
|
56 |
background: #0099cc;
|
|
|
57 |
}
|
|
|
32 |
}
|
33 |
|
34 |
.navigation button {
|
35 |
+
background: #00CFFF; /* Neon blue color */
|
36 |
border: none;
|
37 |
border-radius: 4px;
|
38 |
color: #fff;
|
|
|
40 |
font-size: 14px; /* Smaller font size for Previous and Next */
|
41 |
padding: 8px 12px;
|
42 |
margin: 5px;
|
43 |
+
transition: transform 0.3s ease; /* Add transition for animation */
|
44 |
}
|
45 |
|
46 |
#flipBtn {
|
47 |
+
font-size: 18px; /* Larger font size for Flip */
|
48 |
+
padding: 10px 6em;
|
49 |
background: #007BFF;
|
50 |
+
transition: transform 0.3s ease; /* Add transition for animation */
|
51 |
}
|
52 |
|
53 |
#flipBtn:hover {
|
54 |
background: #0056b3;
|
55 |
+
transform: scale(1.1); /* Scale up on hover */
|
56 |
}
|
57 |
|
58 |
.navigation button:hover {
|
59 |
background: #0099cc;
|
60 |
+
transform: scale(1.1); /* Scale up on hover */
|
61 |
}
|