blob: 4f4981e5982f933dae7b90339994f59e146573c4 (
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
95
96
97
98
99
|
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 {
display: none;
user-select: none;
}
.item:hover .item-buttons {
display: inline;
}
.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: #444;
vertical-align: 3px;
margin-left: 15px;
}
.item-upvote {
border: 1px #888 solid;
border-radius: 4px;
background-color: #eee;
color: green;
font-weight: bold;
cursor: pointer;
margin-left: 15px;
padding-left: 8px;
padding-right: 8px;
}
.item-downvote {
font-size: 23px;
color: blue;
cursor: pointer;
margin-left: 15px;
vertical-align: 2px;
}
.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;
}
|