-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (44 loc) · 758 Bytes
/
style.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
.item {
border: 2px solid #000;
padding: 10px;
border-radius: 20px;
}
.item-title {
text-transform: uppercase;
text-align: center;
font-weight: 600;
}
.item-image {
height: 300px;
width: 100%;
}
.item-details {
display: flex;
justify-content: space-between;
align-items: center;
margin: 20px 0px 15px;
}
.item-details > .item-price {
margin: 0;
}
/* ? SHOPPING CART */
.shopping-cart-items {
padding: 20px 0px;
}
.shopping-cart-header {
border-bottom: 1px solid #ccc;
}
.shopping-cart-image {
max-width: 80px;
border-radius: 20px;
}
.shopping-cart-quantity-input {
max-width: 45px;
border: 1px solid #ccc;
border-radius: 5px;
background: #eee;
padding: 5px;
}
.shopping-cart-total {
min-height: 96px;
}