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
/** 無人回應的空噗:旋轉的名畫 **/
.plurk_box > .response_box .list .empty::before {
	content: ' ';
	background: url('https://emos.plurk.com/3c3faf75cd5cba3a9eea2f6de254f1f2_w48_h48.jpeg') 2px 2px;
	position: absolute;
	left: 48px;
	top: 16px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	transform: rotate(0deg);
	transition: ease-out 1.5s transform;
}

.plurk_box > .response_box:hover .list .empty::before {
	transform: rotate(-45deg);
	transition-duration: ease-out 1s transform;
}

.plurk_box > .response_box .list .empty::after{
	content: ' ';
	background: url('https://emos.plurk.com/c912227374d1139c567a5b1b4ed87e97_w48_h48.jpeg') 2px 2px;
	position: absolute;
	right: 48px;
	top: 16px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	transform: rotate(0deg);
	transition: ease-out 1.5s transform;
}

.plurk_box > .response_box:hover .list .empty::after {
	transform: rotate(45deg);
	transition-duration: ease-out 1s transform;
}


/** 最後的留言:名畫陪伴你 **/
.response_box .list .response:last-of-type::after {
    background: #FFF url('https://emos.plurk.com/505f98b6983661caee74623f0b142b03_w48_h48.jpeg') no-repeat;
    content: '主人!樓上是最後的留言了……';
    display: flex;
    flex: 1;
    align-items: center;
    border: 1px solid #000;
    border-radius: 3px;
    width: 95%;
    height: 48px;
    margin-left: 10px;
    padding-left: 54px;
}