nagasurendra commited on
Commit
07a58d7
·
verified ·
1 Parent(s): 0fe423f

Update templates/cart.html

Browse files
Files changed (1) hide show
  1. templates/cart.html +16 -13
templates/cart.html CHANGED
@@ -50,19 +50,22 @@
50
  font-weight: 600;
51
  }
52
  .checkout-button {
53
- background-color: #007bff;
54
- color: #fff;
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;
62
- }
63
- .checkout-button:hover {
64
- background-color: #0056b3;
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;