Spaces:
Sleeping
Sleeping
Update templates/cart.html
Browse files- templates/cart.html +16 -13
templates/cart.html
CHANGED
@@ -50,19 +50,22 @@
|
|
50 |
font-weight: 600;
|
51 |
}
|
52 |
.checkout-button {
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
|
|
|
|
|
|
66 |
.add-back-button {
|
67 |
padding: 6px 20px;
|
68 |
font-size: 0.9rem;
|
|
|
50 |
font-weight: 600;
|
51 |
}
|
52 |
.checkout-button {
|
53 |
+
background-color: #0FAA39; /* Green background */
|
54 |
+
color: #fff; /* White text */
|
55 |
+
padding: 12px;
|
56 |
+
border-radius: 8px;
|
57 |
+
border: none;
|
58 |
+
width: 100%;
|
59 |
+
font-size: 1.2rem;
|
60 |
+
cursor: pointer;
|
61 |
+
transition: background-color 0.3s, color 0.3s;
|
62 |
+
}
|
63 |
+
|
64 |
+
.checkout-button:hover {
|
65 |
+
background-color: #0FAA39; /* Keep the background green on hover */
|
66 |
+
color: #fff; /* Keep the text white on hover */
|
67 |
+
}
|
68 |
+
|
69 |
.add-back-button {
|
70 |
padding: 6px 20px;
|
71 |
font-size: 0.9rem;
|