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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | 自訂佈景 #dynamic_logo{ width:300px; /* 圖片寬度 */ height:300px; /* 圖片高度 */ background:url(https://images.plurk.com/7GfCUPpy7lGUxQGrQurFon.png) no-repeat; /* 圖片網址 */ filter: drop-shadow(3px 3px 7px rgba(0, 0, 0, 0.3)); /* 陰影 */ overflow: hidden; z-index:1000; background-size:contain; position: fixed; /* 固定位置在視窗右下 */ bottom: 30px; right: 30px; } .cboxAnchor[data-type="plurk"]>table{ position: relative; } .cboxAnchor[data-type="plurk"]>table::before{ content:""; color:red; position: absolute; width:80px; height:50px; right: 60px; top:-37px; background-image:url(https://cdn.discordapp.com/attachments/822067540745519144/868152378627620864/Webp.net-gifmaker_4.gif); /*可替換圖片*/ z-index:100; background-size:contain; background-repeat: no-repeat; } .timeline-cnt{ position:relative; margin-top: 30px; /* 增加數字避免讓最上面的趴趴撞到上面的bar */ } /* 已讀氣泡框 */ .response_count{ position: relative; top:-52px; left:-40px; border:5px solid transparent; border-radius:30px; background-color:#2d2d2d; font-size: 10px; text-align:center; z-index:100; width:100%; height:100%; min-width:25px; max-height:20px; color:#8f8f8f; line-height:8px; font-family:微軟正黑體 !important; } /* 未讀氣泡框 */ .new .response_count{ border:5px solid transparent; background-color:#8A6BBE; } /* 已讀尾巴 */ .response_count::after { content:""; position:absolute; left:4px; top:10px; border-color: #2d2d2d transparent transparent #2d2d2d; border-style: solid solid solid solid; border-width: 5px 5px; height: 0px; width: 0px; } /* 未讀尾巴 */ .new .response_count::after { border-color: #8A6BBE transparent transparent #8A6BBE; } /*噗幣旁增加圖案*/ ._lc_ #dash-profile { background: url(https://cdn.discordapp.com/attachments/822067540745519144/868172791936061531/f218055644d67853.png) no-repeat; background-position: 80% 120%; } /*河道透明度*/ .plurk_cnt { opacity: 0.7; filter: alpha(opacity=50); zoom: 1 } .plurk_cnt:hover { opacity: 1; filter: alpha(opacity=100); zoom: 1 } /* 噗主回覆 */ .list .highlight_owner .plurk_cnt, .list .highlight_owner:hover { background-image:url(https://i.imgur.com/F7m4pTv.png)!important; background-repeat:no-repeat!important; background-position:right bottom!important; } /* 川子講話 */ img#premium-icon{ opacity:0; height:39px !important; width:39px !important; } .premium{ background:url(https://i.imgur.com/wMpzki1.gif) no-repeat; width:35px; height:35px; position:relative; font-size: 12px; z-index:100; } .profile-icons{ height:39px !important; } .premium::before{ display:none; box-sizing: border-box; border:solid black 1px; position:absolute; padding:0 7px; border-radius:5px; left:150%; /* 置中用-不用調整 */ min-width:100%; /* 提示框寬度-不用調整 */ content:"漣!"; /*框內文字*/ height:26px; /* 提示框高度 */ color:white; /* 文字顏色 */ text-align:center; /* 文字左右置中 */ line-height:22px; /* 行高 */ margin-left:-55px; /* 提示框左右位置 */ background-color:#383838; /* 背景顏色 */ top:-35px; /* 提示框位置高度 */ } .premium::after{ display:none; box-sizing: border-box; content:""; width:5px; height:5px; border:solid 5px; position:absolute; transform: rotate(-135deg); left:50%; /* 置中用-不用調整 */ border-color: #383838 transparent transparent #383838; /* 提示框尾巴顏色 */ margin-left:-10px; /* 提示框左右位置 */ top:-15px; /* 提示框尾巴位置高度 */ } .premium:hover::before{ display:block; } .premium:hover::after{ display:block; } |
Direct link: https://paste.plurk.com/show/tqXtJwD5ZkvVvJGDjxnq