-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
90 lines (79 loc) · 1.45 KB
/
styles.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
.card-custom {
max-width: 300px;
}
.cart-column {
display: flex;
align-items: center;
border-bottom: 1px solid black;
margin-right: 1.5em;
padding-bottom: 10px;
margin-top: 10px;
}
.cart-row {
display: flex;
}
.cart-item {
width: 100%;
}
.cart-price {
width: 40%;
color: #333;
}
.cart-quantity {
width: 35%;
}
.cart-item-title {
color: #333;
margin-left: .5em;
font-size: 1.2em;
}
.cart-quantity-input {
height: 34px;
width: 50px;
border-radius: 5px;
border: 1px solid #56CCF2;
background-color: #eee;
color: #333;
padding: 0;
text-align: center;
font-size: 1.2em;
margin-right: 25px;
}
.cart-total {
text-align: end;
margin-top: 10px;
margin-right: 10px;
}
.cart-total-title {
font-weight: bold;
font-size: 1.5em;
color: black;
margin-right: 20px;
}
.cart-total-price {
color: #333;
font-size: 1.1em;
}
.btn-purchase {
display: block;
margin: 40px auto 80px auto;
}
.badge {
padding-left: 9px;
padding-right: 9px;
-webkit-border-radius: 9px;
-moz-border-radius: 9px;
border-radius: 9px;
}
/* .label-warning[href],
.badge-warning[href] {
background-color: #c67605;
} */
.cartCount {
font-size: 12px;
background: #ff0000;
color: #fff;
padding: 0 5px;
vertical-align: top;
margin-left: -2px;
}