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
/*只針對趴趴的轉噗與普通噗設定*/

/*此為轉噗*/
.qualifier.q_replurks::after {
position: absolute;
content: "";
right: 11px;
top: -48px;
background-image: url(https://images.plurk.com/4KVpMGakqUnUd6VaZrwgnO.gif);
background-size: contain;
background-repeat: no-repeat;
height: 70px;
width: 70px;
}
/*此為非轉噗*/
.qualifier:not(.q_replurks)::after {
position: absolute;
content: "";
right: 11px;
top: -48px;
background-image: url(https://s.plurk.com/creatures/big/72e28d113423eccdc548.png);
background-size: contain;
background-repeat: no-repeat;
height: 70px;
width: 70px;
}