forked from sahtejkumar/dreary-hand-8237
-
Notifications
You must be signed in to change notification settings - Fork 0
/
coupon.css
68 lines (68 loc) · 1.13 KB
/
coupon.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
.coupon .flex {
margin-bottom: 50px;
}
.item img {
height: 70px;
width: 70px;
border: 1px solid lightgrey;
border-radius: 5%;
}
.item {
display: flex;
align-items: center;
}
#title, #price {
color: #323232;
font-weight: 500;
margin-left: 10px;
}
.discount {
display: flex;
margin: 20px 0;
gap: 10px;
}
.discount input, .discount button {
padding: 3%;
}
.discount input {
width: 70%;
border: 1px solid #d9d9d9;
border-radius: 5%;
}
.discount button {
width: 25%;
background-color: #475d4b;
border: 1px transparent solid;
border-radius: 5px;
color: white;
font-weight: 500;
text-align: center;
cursor: pointer;
}
.subtotal, .shipping, .total-div {
display: flex;
justify-content: space-between;
align-items: center;
}
.myfont {
color: #535353;
line-height: 1.3em;
}
.small {
color: #717171;
font-size: 0.8571428571em;
}
#total {
font-size: 1.7142857143em;
font-weight: 500;
letter-spacing: -0.04em;
line-height: 1em;
}
.div {
display: flex;
align-items: center;
gap: 10px;
}
.para p {
line-height: 0.5;
}