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 | /** 投票選項:填充部份追加圓角 **/ .poll-candidate .candidate-background{ border-radius: 0 3px 3px 0; } /** 已投票選項:邊框顏色 **/ .poll-candidate.voted { border-color: #000; } /** 最高得票選項:文字顏色及邊框顏色 **/ .poll-candidate.active { color: #f36109; border-color: #f36109; font-weight: bold; } .poll-candidate.active + .candidate-percentage { color: #f36109; font-weight: bold; } /** 最高得票選項:填充部份的顏色 **/ .poll-candidate.active .candidate-background { background: linear-gradient(to right, #ffbe42, #ff7373); opacity: 0.3; } /** 最高得票選項:前面追加小圖示 **/ .poll-candidate.active::before { content: url('https://emos.plurk.com/d8c19cc121c355d06edbcc05f66e403f_w23_h20.gif'); z-index: 10; filter: drop-shadow(1px 1px 0px #0000006e); } |
Direct link: https://paste.plurk.com/show/DxxxiBg1oNJTXCtfNhqr