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
/* 投票區塊語法 */
/* 消滅投票主題及可見自己投票區塊 */
.plurk-poll--subject{
display: none !important;
}

/* 消滅單選複選框 */
.voted-mark, .plurk-poll--form .radio, .form-field > .checkbox{
display: none;
}

/* 整個投票區 */
.plurk-poll{
border: none;
border-radius: 0px;
border-top: 1px solid rgba(0,0,0,0.08);
border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* 投票結果區塊 */
.poll-candidate{
border: 2px solid #fff;
background: #f3f3f3;
padding: 0.6em 0.6em;
height: 36px;
}

/* 得票最多區塊 */
.poll-candidate.active{
border: 2px solid #fff;
background: #fff4ee;
color: #6c0527;
}

/* 得票最多區背景 */
.poll-candidate.active .candidate-background{
background: rgb(255 190 175);
}

/* 得票最多區文字顏色 */
.poll-candidate.active + .candidate-percentage{
color:rgb(240, 134, 110) ;
}

/* 投票區塊 */
/* 被選中的區塊 */
.checkbox.checked ~ .checkbox--label {
border-color: #FF574D;
}

/* 取消投票、投票按鈕 */
.plurk-poll--buttons > button{
flex: none;
width: 95px;
padding: 10px 8px;
}

/* 投票區塊 */
.checkbox--label{
padding: 0.6em 0.6em;
}

/* 選擇投哪票區塊的高 */
.plurk-poll--form > .field{
height: 36px;
}

/* 修改成功 */
.plurk-poll--buttons .status-success, .plurk-poll--buttons .status-success:hover{
background: #FF574D ;
}