-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckout.css
More file actions
71 lines (62 loc) · 1.1 KB
/
checkout.css
File metadata and controls
71 lines (62 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#cart {
margin: 2.5%;
padding: 2.5%;
border: 1px solid #ddd;
border-radius: 10px;
}
#cart h2 {
color: #ff7f00;
}
#cart-items {
list-style-type: none;
padding: 0;
}
button.quantity-btn {
background-color: #ff7f00;
color: white;
border: 1px solid #ff7f00;
padding: 5px 10px;
margin-right: 10px;
margin-left: 10px;
cursor: pointer;
border-radius: 5px;
}
button.quantity-btn:hover {
background-color: #e67300;
}
button.remove-btn {
background-color: #ff7f00;
color: white;
border: 1px solid #ff7f00;
padding: 5px 10px;
margin-left: 10px;
cursor: pointer;
border-radius: 5px;
}
button.remove-btn:hover {
background-color: #e67300;
}
#cart-items li {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
font-size: 18px;
}
#proceedBtn {
background-color: #ff7f00;
color: white;
border: none;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: block;
margin: auto;
font-size: 16px;
margin-top: 20px;
cursor: pointer;
border-radius: 5px;
}
#proceedBtn:hover {
background-color: #e67300;
}