-
Notifications
You must be signed in to change notification settings - Fork 1
/
style-clean.css
75 lines (62 loc) · 985 Bytes
/
style-clean.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
* {
box-sizing: border-box;
}
body {
background-image: url('http://thumbs.dreamstime.com/x/cute-friendly-cow-pattern-7279386.jpg');
text-align: center;
}
#app {
margin-top: 30px;
text-align: left;
padding: 10px;
width: 600px;
background-color: white;
overflow: auto;
margin-left: auto;
margin-right: auto;
}
ul {
list-style: none;
padding-left: 0;
}
li {
padding-left: 0;
}
.thumbnail {
width: 50%;
float: left;
padding: 5px;
}
.thumbnail:nth-child(2n+1) {
clear: both;
}
.thumbnail.selected {
background-color: white;
border: 1px solid silver;
}
.common {
color: #999;
}
.common:before {
content: " ";
}
.plus {
color: green;
}
.plus:before {
content: "+";
}
.minus {
color: red;
}
.minus:before {
content: "-";
}
.common:before, .plus:before, .minus:before {
display: inline-block;
min-width: 1em;
text-align: center;
}
.thumbnail img {
display:none;
}