blob: 4fd73717f7e6f800896cd8793ddfb9440d2bcf78 (
plain)
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
91
92
93
94
|
body {
font-family: sans-serif;
}
#list {
font-size: 30px;
}
body.unauth #list {
display: none;
}
body.okauth #login {
display: none;
}
.item {
margin-bottom: 4px;
}
.item.flash {
background-color: #fdd;
}
.item.negative {
color: #999;
}
.item.make-new {
margin-top: 7px;
}
.item .item-buttons {
visibility: hidden;
user-select: none;
}
.item:hover .item-buttons {
visibility: visible;
}
.item-vote-table {
display: inline-block;
border-collapse: collapse;
margin-right: 5px;
}
.item-bullet {
color: #444;
user-select: none;
margin-right: 10px;
}
.item.negative .item-bullet {
color: #aaa;
}
.item-votes {
display: inline-block;
font-size: 18px;
color: #ccc;
vertical-align: 6px;
}
.item:hover .item-votes {
color: #444;
}
.item-upvote, .item-downvote {
background: #eee;
font-size: 10px;
width: 20px;
text-align: center;
}
.item-delete {
font-weight: bold;
font-family: mononoki;
color: #f00;
font-size: 28px;
margin-left: 11px;
cursor: pointer;
}
.new-item-bullet {
color: #888;
font-weight: bold;
font-family: mononoki;
margin-left: 1px;
margin-right: 8px;
user-select: none;
vertical-align: 1px;
}
.new-item-input {
font-size: 26px;
}
|