-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.css
65 lines (56 loc) · 1.04 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
.cart_page{
display: grid;
grid-template-columns: 1fr;
place-items: center;
text-align: left;
width: 100%;
color: white;
}
.cart_item{
border-bottom: #f1f1f1;
border-width: 5px;
margin-top: 20px;
margin-bottom: 20px;
margin-left: 10px;
margin-right: 10px;
padding: 10px;
width: 100%;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
max-height: 100px;
}
.cart_item_img img{
border: silver;
border-width: 5px;
height: 100px;
}
.cart_item_desc, .cart_item_number_parent, .cart_item_price_parent{
text-align: left;
}
.cart_item_number{
color: white;
}
.cart_payment_info h3{
text-align: right;
}
.cart_page_bottom{
text-align: right;
}
#cart_reset, #cart_bill{
margin: 10px;
padding-left: 25px;
padding-right: 25px;
padding-top: 8px;
padding-bottom: 8px;
font-size: 16px;
border: none;
border-radius: 20px;
}
#cart_bill{
background: red;
color: white;
}
#cart_bill:hover{
background: gray;
color: black;
}