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
/*特定表符更改噗首樣式*/
/*噗寶位置設定*/
.plurk:not(.response) .plurk_cnt {
  background-repeat: no-repeat;
  background-position: calc(100% - 5px) 0;
}
/*日常噗噗寶*/
.plurk:not(.response):has(img[src="https://emos.plurk.com/d140a611eef9ee075e28e1f5fe713451_w43_h22.png"]) .plurk_cnt {
  background-image: url(https://emos.plurk.com/c5edb6dee6b4bf42a44b7c57ceb8baad_w33_h40.gif);
}
/*愛心噗噗寶*/
.plurk:not(.response):has(img[src="https://emos.plurk.com/bd2b46c8e5a3c8b8f3201c6ea931e94c_w27_h22.png"]) .plurk_cnt {
  background-image: url(https://emos.plurk.com/3b6c38be864d6e3a641a4cb7e042b7cc_w33_h40.gif);
}
/*回應數樣式*/
.response_count {
  color: #aaa;
  background-color: #fff;
  padding: 1px 6px;
  margin-top: -5px;
  border-radius: 30px;
  transform: translate(-100%, -100%);
}
/*日常噗回應數*/
.plurk:has(img[src="https://emos.plurk.com/d140a611eef9ee075e28e1f5fe713451_w43_h22.png"]) .response_count {
  color: rgb(92, 119, 164);
  background-color: rgb(192, 220, 225);
}
/*愛心噗回應數*/
.plurk:has(img[src="https://emos.plurk.com/bd2b46c8e5a3c8b8f3201c6ea931e94c_w27_h22.png"]) .response_count {
  color: rgb(116, 94, 138);
  background-color: rgb(232, 180, 205);
}