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 | /*左側懸浮-本體(AB兩區要同時修改)*/ #plurk-dashboard .dash-group-left { /*A-滑出速度*/ transition:left 0.6s; /*A-上下位置*/ top:42px; /*A-收起時左右位置*/ left:-280px; /*A-寬度*/ width:300px; } .dash-segment-friends .segment-content, .dash-segment-fans .segment-content { /*B-滑出速度*/ transition:left 0.6s; /*B-上下位置*/ top:42px; /*B-收起時左右位置*/ left:-280px; /*B-寬度*/ width:300px; } /*左側懸浮-友粉按鈕(CD兩區要同時修改)*/ .dash-segment-friends .segment-content, .dash-segment-fans .segment-content { /*C-高度*/ height:46px; } .dash-segment-profile:before { /*D-高度*/ height:46px; /*背景色*/ background:#222e; } /*如果頭貼那個欄位高度有改變的話要改這裡*/ .dash-segment-friends .segment-content, .dash-segment-fans .segment-content { /*符合個人資料欄位高度*/ margin-top:116px; } /*左側懸浮-下面這區不動*/ #plurk-dashboard .dash-group-left { position:fixed; z-index:6000; padding:0; transition:left .6s; } .dash-segment-friends .segment-content, .dash-segment-fans .segment-content { background:unset; position:fixed; z-index:6000; } #plurk-dashboard:hover .dash-group-left, #plurk-dashboard:hover .dash-segment-friends .segment-content, #plurk-dashboard:hover .dash-segment-fans .segment-content { left:0; } .dash-segment-profile:before { content:""; display:block; width:100%; order:1; border-radius:10px; margin-top:10px; } .dash-segment-profile { display:flex; flex-direction:column; } .dash-segment-profile .segment-content:nth-child(2) { order:2; } #dash-friends > *:not(#friend_managment), #dash-fans > *:not(#fan_managment) { display:none; } #dash-friends, #dash-fans { width:50%; } #dash-fans { float:right; } #plurk-dashboard .dash-group-form, #plurk-dashboard .dash-group-right { float:unset; margin:0 auto; } /*左側懸浮-上面這區不動*/ |
Direct link: https://paste.plurk.com/show/eLDddyrTuN8TTlk5z8bO