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 | /*投票按鈕:一般狀態*/ .plurk-poll--buttons button { /*邊線顏色*/ box-shadow:inset 0 0 0 1px #FAA; /*字色*/ color:#FAA; /*底色*/ background:#fefefe; } /*投票按鈕:指上狀態*/ .plurk-poll--buttons button:hover { /*邊線顏色*/ box-shadow:inset 0 0 0 1px #AAF; /*字色*/ color:#AAF; /*底色*/ background:#fafafa; } /*投票按鈕:按下狀態*/ .plurk-poll--buttons button:active { /*邊線顏色*/ box-shadow:inset 0 0 0 1px #AFA; /*字色*/ color:#AFA; /*底色*/ background:#f6f6f6; } /*投票按鈕:不可按狀態*/ .plurk-poll--buttons button:disabled { /*邊線顏色*/ box-shadow:inset 0 0 0 1px #000; /*字色*/ color:#e1e1e1; /*底色*/ background:#817979; } /*投票按鈕:顯示狀態的按鈕(投票成功、投票已收回、修改成功)*/ .plurk-poll--buttons button.show { /*邊線顏色*/ box-shadow:inset 0 0 0 1px #5471ff; /*字色*/ color:#5471ff; /*底色*/ background:#ceffce; } |
Direct link: https://paste.plurk.com/show/EUL7eWK72MCKNVJLgeNP