Parent: [99a5a9] (diff)

Download this file

vote.css    26 lines (25 with data), 585 Bytes

 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
#vote { color: #aaa; }
#vote ul {
display: inline-block;
margin: 0 10px 20px 10px;
}
#vote li {
list-style: none;
position: relative;
border-right: 1px solid #fff;
border-right: 1px solid #aaa;
display: inline-block;
text-align: center;
vertical-align: middle;
width: 24px;
height: 24px;
cursor: pointer;
}
#vote li:hover { background: rgba(229, 229, 229, 0.9); }
#vote li:first-child { border-left: medium none; }
#vote li:last-child {
border-right: medium none;
margin-left: -4px;
}
#vote li b { margin-top: 5px; }
#vote .comments { margin-right: 10px; }