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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | /*全張背景,因為圖片不會自動延展,建議事先自行放大圖檔,參考高度1084*/ body, html { background: url(); /*想要的圖片URL*/ background-repeat: no-repeat; /*圖片不重複*/ background-position: above; /*圖片置中*/ background-attachment:fixed; /*固定背景*/ } /* ==直接下半部全透明CSS語法=== */ #plurk-dashboard, #plurk_form ,#toggle_tab {opacity: 0.5; filter: alpha(opacity=50);} /* =plurk LOGO和生物透明CSS語法= */ #dynamic_logo, .cmp_plurk{opacity: 0.1;filter: alpha(opacity=0);} #creature{opacity: 0.1;filter: alpha(opacity=10);} /* =河道透明CSS語法== */ #timeline_holder {background:none; border:none;} /* =河道左邊BAR透明CSS語法== */ .day_bg .div_inner{background: none;border:hidden;} /* =時間軸背景透明CSS語法== */ #bottom_line {background:none; border:none;} #timeline_bg {opacity: 0;filter: alpha(opacity=10);} /* =plurk LOGO和生物透明CSS語法= */ #dynamic_logo, .cmp_plurk{opacity: 0;filter: alpha(opacity=0);} #creature{opacity: 0;filter: alpha(opacity=0);} /* ===下方區塊隱藏效果=== */ div#dashboard_holder, ul#filter_tab{filter:alpha(opacity=0)!important ;opacity:0!important;} div#dashboard_holder:hover ,ul#filter_tab:hover{filter:alpha(opacity=100) !important;opacity:1 !important;} /* 未知 */ #plurk-dashboard{background:none; border:hidden;} /*個人照片縮小*/ #profile_pic { border: 0; width: 30px; } /*-------------------------------/ 2 / --------------------------*/ /*隱藏朋友粉絲圖和標題***/ div#dash-friends-pics, div#dash-fans-pics, /*圖*/ #dash-fans h2, #dash-friends h2 /*標題*/ { filter:alpha(opacity=0) !important;opacity: 0 !important;zoom:1; height:0px; overflow:hidden; } /*完全隱藏*/ .award_bar, /*徽章區*/ a.link_arrow, /*如何獲得徽章*/ .award_bar_mini .award_bar, /*個人小視窗徽章區*/ .award_bar_mini .award_bar div, .award_bar_mini.on { filter:alpha(opacity=0) !important; -moz-opacity:0 !important; opacity:0 !important; height:0 !important; width:0 !important; font-size:0 !important; overflow:hidden; zoom:1; } /*藏購物狂*/ #top_bar .content a:nth-child(2){ position:absolute;z-index:1; filter:alpha(opacity=0) !important; -moz-opacity:0 !important; opacity:0 !important; height:0 !important; width:0 !important; overflow:hidden; zoom:1;} |
Direct link: https://paste.plurk.com/show/2158905