-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.css
74 lines (70 loc) · 1.03 KB
/
cart.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
.item {
display: flex;
width: 1204px;
margin: 0 auto;
}
.column {
width: 25px;
height: auto;
border: 1px solid black;
flex-grow: 1;
flex-basis: 25px;
padding: 12px;
}
.name {
flex-grow: 3;
}
#wrapper{
display:flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 20px 30%;
}
.line{
border: 1px solid black;
width: 200px;
height: auto;
margin-bottom: 40px;
}
button{
margin: 5px auto;
padding: 10px 20px;
}
input{
margin: 5px auto;
padding: 10px 20px;
}
img{
height: 270px;
width: 200px;
}
#cart {
height: auto;
font-size: 20px;
background-color: white;
margin: 20px auto;
}
.empty {
font-size: 20px;
}
#product_template{
display: none;
}
.product_quantity{
width: 25px;
}
.cart_wrapper>h3{
width: 100%;
height: 50px;
border-bottom: 1px solid black;
}
.delivery_wrapper>h3{
width: 100%;
height: 50px;
border-bottom: 1px solid black;
}
.none{
display: none;
width: 0;
height: 0;
}