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
/*主控台內分區*/
.dash-segment .segment-content {
background-color: rgba(235, 233, 231, 1);
border: 2px solid rgba(152,152, 152, 1);
border-radius:0;
}

/*個人資料區整體*/
.dash-segment-profile .segment-content {
color: #000000;
}
/*卡碼資訊區整體*/
.dash-segment-stats .segment-content {
color: #000000;
}

/*頭貼區*/
.dash-segment-profile .segment-content:nth-child(1) {
position:fixed;
z-index:1000;
margin:0;
width:375px;
top:45px;
left:-350px;
transition:left .6s;
padding-left:35px;
padding-top:25px;
padding-bottom:10px;
padding-right:10px;
}
/*噗幣位置*/
#plurk-dashboard .profile-icons {
display: inline-block;
left: 67px;
bottom: 3px !important;
}
#plurk-dashboard .profile-info {
padding-top: 5px;
position: static !important;
}

/*自介區*/
.dash-segment-profile .segment-content:nth-child(2) {
position:fixed;
z-index:1000;
margin:0;
width:375px;
top:120px;
left:-350px;
transition:left .6s;
padding-left:35px;
padding-top:25px;
padding-bottom:10px;
padding-right:10px;
}

/*卡馬區*/
.dash-segment-stats .segment-content{
position:fixed;
z-index:1000;
margin:0;
width:375px;
top:195px;
left:-350px;
transition:left .6s;
padding-left:35px;
padding-top:25px;
padding-bottom:10px;
padding-right:10px;
}._lch_ ~ .pop-view.karma_tooltip{display:none !important;}

/*好友區*/
.dash-segment-friends .segment-content{
position:fixed;
z-index:1000;
margin:0;
width:375px;
top:270px;
left:-350px;
transition:left .6s;
padding-left:35px;
padding-top:25px;
padding-bottom:10px;
padding-right:10px;
}
/*粉絲區*/
.dash-segment-fans .segment-content{
position:fixed;
z-index:1000;
margin:0;
width:375px;
top:345px;
left:-350px;
transition:left .6s;
padding-left:35px;
padding-top:25px;
padding-bottom:10px;
padding-right:10px;
}
/*徽章區*/
#plurk-dashboard .dash-segment-award {
display: none;
}

.dash-segment-profile .segment-content:nth-child(1):hover, .dash-segment-profile .segment-content:nth-child(2):hover,.dash-segment-stats .segment-content:hover,.dash-segment-friends .segment-content:hover,.dash-segment-fans .segment-content:hover{ left:0px;}