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
/*噗文&暱稱背景樣式*/
.plurk:not(.response) .td_cnt, .plurk:not(.response) .td_qual {
  background: rgba(255, 255, 255, 0.8); /*噗文顏色&透明度*/
  backdrop-filter: blur(15px); /*背景模糊度*/
}
.plurk:not(.response) .plurk_cnt { background: none; }
/*不顯示頭貼*/
.plurk:not(.response) .p_img img {
  display: none;
}
/*暱稱樣式*/
.plurk:not(.response) .td_qual {
  display: block;
  position: absolute;
  top: -23px;
  left: 10px;
  width: auto;
  height: 25px;
  padding: 5px 5px 1px 7px;
  border-radius: 5px 5px 0 0; /*圓角*/
}
/*噗文icon調整*/
.plurk_icon {
  top: -7px;
}
/*噗文寬度調整*/
.plurk:not(.response) .text_holder {
  padding: 3px 15px;
  min-width: 270px;
}
/*回應數位置*/
.plurk:not(.response) .response_count {
  height: 20px;
  transform: translate(-100%, -17px);
}