-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcheckout.css
93 lines (81 loc) · 1.53 KB
/
checkout.css
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#main-section {
padding: 2% 8%;
box-sizing: border-box;
}
#main-heading {
font-size: 36px;
font-weight: 500;
margin: 0;
margin-bottom: 48px;
}
#content-wrapper {
display: flex;
justify-content: start;
}
#content-wrapper > div:first-of-type {
width: 50%;
}
#content-wrapper > div:last-of-type {
width: 50%;
height: fit-content;
margin-top: 48px;
margin-left: 3%;
box-sizing: border-box;
box-shadow: 0 2px 5px #ccc;
border-radius: 5px;
padding: 16px;
}
.checkout-card {
display: flex;
box-sizing: border-box;
box-shadow: 0 2px 5px #ccc;
border-radius: 5px;
background-color: white;
max-width: 600px;
padding: 16px;
margin-bottom: 16px;
}
.checkout-product-img {
width: 80px;
min-width: 80px;
border-radius: 5px;
margin-right: 16px;
}
.checkout-card h4 {
font-weight: 600;
margin: 0;
margin-bottom: 4px;
font-size: 18px;
}
.checkout-card p {
margin: 0;
margin-top: 4px;
margin-bottom: 4px;
}
.section-heading {
font-size: 24px;
color: rgba(0, 0, 0, 0.8);
font-weight: 400;
margin: 0;
margin-bottom: 16px;
}
#total-amount {
color: black;
opacity: 0.8;
font-size: 24px;
font-weight: 800;
margin-left: 4px;
}
#btn-place-order{
background-color: #009688;
font-size: 18px;
border: 0;
cursor: pointer;
outline: none;
padding: 18px 36px;
border-radius: 6px;
margin-top: 36px;
font-weight: 600;
color: rgba(0, 0, 0, 0.8);
color: white;
}