style.css
1.01 KB
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
.km-nova p.added {
color: green;
font-size: .8em;
margin: -.3em 0 0;
}
.item-list a.km-button {
position: absolute;
right: .6em;
right: .6rem;
top: 50%;
margin-top: -1.3em;
}
#cart .km-listview {
text-align: left;
}
/* Details View */
#details .km-content,
#cart .km-content,
#done .km-content {
-webkit-box-sizing: border-box;
text-align: center;
}
#details img {
width: 8.4em;
height: 8.4em;
margin: 2em auto;
-webkit-border-radius: 50%;
border-radius: 50%;
}
#details p {
margin: 1em auto 3em;
}
/* Cart View */
#cart .price {
color: #777;
display: block;
font-weight: normal;
font-size: .8em;
line-height: 1em;
}
.km-empty h2,
.km-empty #checkout {
display: none;
}
#cartList:empty {
height: 6em;
line-height: 6em;
}
#cartList:empty:before {
content: "Your cart is empty.";
position: absolute;
left: 0;
right: 0;
text-align: center;
color: #888;
}
#total {
padding: .5em;
font-size: 4em;
}