-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcart.css
71 lines (57 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
66
67
68
69
70
71
.cart {
margin: 40px;
}
.cart h3 {
text-align: center;
}
.cart-table {
line-height: 1.6;
margin: 0;
}
/* table */
table {
margin: auto;
border-style: none;
border-collapse: collapse;
border-spacing: 0;
width: auto;
min-width: 300px;
height: 100%;
}
td, th {
padding: 40px 40px;
border-bottom: 1px solid rgba(0,0,0,0.12);
vertical-align: middle;
}
tbody td {
color: #5A6A72;
}
tfoot td {
color: black;
text-align: right;
}
tbody tr:hover, tfoot tr:hover {
background-color: #F0F3F4;
}
thead th, tbody td {
text-align: center;
}
/* checkout */
#checkout {
text-align: center;
margin-top: 50px;
}
#checkout-btn {
display: inline-block;
background-color: #7C4DFF;
border-radius: 6px;
color: #fff;
text-decoration: none;
padding: 12px 30px;
transition: all .5s;
}
#checkout-btn:hover {
background-color: #895eff;
-webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.300);
box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.300);
}