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 | /*自己名字加底色(無論是不是噗主)*/ .list .name[data-uid="你的UID"] { background:#faa; } /*河道主人回應整體:預先設定圖層*/ .list .plurk_cnt { z-index:0; } /*河道主人回應整體:預先設定區塊*/ .list .name[data-uid="你的UID"]:before { /*這行勿動*/ content:""; position:absolute; top:0; left:0; z-index:-1; /*這行勿動*/ width:100%; height:100%; display:block; } /*河道主人回應整體:底色*/ .list .name[data-uid="你的UID"]:before { /*顏色*/ background-color:#faa; } /*河道主人回應整體:左側加線條*/ .list .name[data-uid="你的UID"]:before { /*線條樣式*/ border-left:3px solid #666; } /*河道主人回應左側加線:手動設定把內容依照線條粗細往右推*/ .list .plurk:not(.highlight_owner) .plurk_cnt { padding-left:3px; } /*河道主人回應整體:右下圖示*/ .list .name[data-uid="你的UID"]:after { background-image: url(https://emos.plurk.com/7d4e7a30bcc1ec4e69651aea79a3feed_w24_h24.gif)!important;/*圖片網址*/ background-repeat:no-repeat; /*使圖片不重複,刪除會鋪滿*/ background-position:right bottom; /*把圖放在右下角*/ border-radius:5px; /*設定圓角*/ } |
Direct link: https://paste.plurk.com/show/U9EU5iWtjEAXUDPRhPZl