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 | /*重設:三大區塊、友粉各層、私噗送禮外層*/ #plurk-dashboard .dash-group-form, #plurk-dashboard .dash-group-left, #plurk-dashboard .dash-group-right, #plurk-dashboard .dash-segment-friends, #plurk-dashboard .dash-segment, #plurk-dashboard .dash-segment-friends #dash-friends #friend_managment, #plurk-dashboard .dash-segment-fans #dash-fans #fan_managment, .dash-segment-friends .segment-content, .dash-segment-fans .segment-content, #plurk-dashboard .dash-segment-profile #dash-additional-info #private_plurk { all: unset; } /*隱藏:友粉頭貼、卡馬、徽章*/ #plurk-dashboard h2, #dash-friends-pics, #dash-fans-pics, #plurk-dashboard .dash-segment-stats, #plurk-dashboard .dash-segment-award { display: none; } /*預先設定:個資區*/ #plurk-dashboard .dash-segment-profile { display: flex; align-items: flex-start; gap: 10px; } /*預先設定:三大區塊直向排列、左區到最底*/ #plurk-dashboard { display: flex; flex-direction: column; } #plurk-dashboard .dash-group-left { position:relative; order: 1; } /*預先設定:友粉按鈕對其方式*/ #plurk-dashboard .dash-group-right { position:relative; width: calc(100% / 3); display: flex; justify-content: space-evenly; height: 0; } /*頭貼、自介寬度占比*/ .dash-segment-profile .segment-content:nth-child(1) { flex: 1; } .dash-segment-profile .segment-content:nth-child(2) { flex: 2; } /*新區塊(放按鈕的)(自己看不到的區塊)*/ #plurk-dashboard:not(.own) .dash-segment-profile .segment-content:nth-child(1):after { /*這裡勿動*/ content: ""; background: inherit; border-radius: inherit; /*這裡勿動*/ height: var(--height); width: calc(100% + 10px); margin-bottom: calc(var(--height) * -1); /*這裡勿動*/ position:relative; left: -5px; top: 15px; /*高度*/ --height: 85px; } /*私噗、送禮按鈕*/ #plurk-dashboard .dash-segment-profile #dash-additional-info #private_plurk { /*這裡勿動*/ position: absolute; top: 116px; left: 0; /*這裡勿動*/ width: calc(100% / 3); display: flex; justify-content: space-evenly; /*距離上方位置*/ margin-top: 10px; } /*友粉按鈕*/ #render_friend a, #render_follow a { /*這裡勿動*/ position: relative; top: 116px; /*距離上方位置*/ margin-top: 48px; } /*私噗、送禮、友粉四顆按鈕共用*/ .friend_man { /*按鈕寬度*/ width: 100px; /*按鈕高度*/ height: 15px; /*內容置中*/ text-align: center; } |
Direct link: https://paste.plurk.com/show/aWTAk1JHJFfuYIngmQbA