-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckout.css
More file actions
68 lines (59 loc) · 1.08 KB
/
checkout.css
File metadata and controls
68 lines (59 loc) · 1.08 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
body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
margin: 0;
padding: 0;
}
header {
text-align: center;
padding: 20px;
background-color: #ff6f61;
color: white;
}
.checkout-container {
max-width: 600px;
margin: 30px auto;
background: #fff;
padding: 20px;
border-radius: 10px;
}
.checkout-items {
margin-bottom: 20px;
}
.checkout-item {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.checkout-item img {
width: 60px;
height: 60px;
object-fit: cover;
margin-right: 15px;
border-radius: 5px;
}
#checkoutForm label {
display: block;
margin-top: 10px;
font-weight: bold;
}
#checkoutForm input,
#checkoutForm textarea {
width: 100%;
padding: 8px;
margin-top: 5px;
border-radius: 5px;
border: 1px solid #ccc;
}
#checkoutForm button {
margin-top: 20px;
padding: 10px 20px;
background-color: #ff6f61;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
#checkoutForm button:hover {
background-color: #e65a50;
}