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 | /*噗串篩選按鈕顏色:一般狀態*/ #filter_tab a { /*底色*/ background: #333; /*字色*/ color: #FAA; } /*噗串篩選按鈕icon顏色:一般狀態*/ #filter_tab a i { /*icon顏色*/ color: #C66; } /*--------------------*/ /*噗串篩選按鈕顏色:一般狀態滑鼠指上*/ #filter_tab a:hover { /*底色*/ background: #111; /*字色*/ color: #FFA; } /*噗串篩選按鈕icon顏色:一般狀態滑鼠指上*/ #filter_tab a:hover i { /*icon顏色*/ color: #CC6; } /*--------------------*/ /*噗串篩選按鈕顏色:選中的*/ #filter_tab a.filter_selected { /*底色*/ background: #EEE; /*字色*/ color: #88F; } /*噗串篩選按鈕icon顏色:選中的*/ #filter_tab a.filter_selected i { /*icon顏色*/ color: #33D; } /*--------------------*/ /*噗串篩選按鈕顏色:選中的滑鼠指上*/ #filter_tab a.filter_selected:hover { /*底色*/ background: #FFF; /*字色*/ color: #8F8; } /*噗串篩選按鈕icon顏色:選中的滑鼠指上*/ #filter_tab a.filter_selected:hover i { /*icon顏色*/ color: #3D3; } |
Direct link: https://paste.plurk.com/show/dKailSaP8jwM3WBPdZXY