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
/*頭貼區*/
.dash-segment-profile .segment-content:nth-child(1) {
position:fixed; 
z-index:1000; 
margin:0; 
width:350px;
top:70px;
left:-250px;
transition:left .6s;
}

/*自介區*/
.dash-segment-profile .segment-content:nth-child(2) {
position:fixed; 
z-index:1000; 
margin:0; 
width:350px;
top:200px;
left:-250px;
transition:left .6s;
}

/*卡馬區*/
.dash-segment-stats .segment-content{
position:fixed; 
z-index:1000; 
margin:0; 
width:350px;
top:320px;
left:-250px;
transition:left .6s;
}
/*好友區*/
.dash-segment-friends .segment-content{
position:fixed; 
z-index:1000; 
margin:0; 
width:350px;
top:510px;
left:-250px;
transition:left .6s;
}
/*粉絲區*/
.dash-segment-fans .segment-content{
position:fixed; 
z-index:1000; 
margin:0; 
width:350px;
top:660px;
left:-250px;
transition:left .6s;
}

.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:50px;}

/*發噗區伸長*/
#plurk-dashboard .dash-group-form {width:100%;}