1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*左側欄懸浮收左邊*/
#plurk-dashboard .dash-segment-profile {
/*這些不動*/ position:fixed; z-index:6000;
/*上下位置*/ top:60px; right: 0;
/*寬度*/ width:300px;
}

/*假頭貼框*/
.dash-group-left:before {
/*這些不動*/ content:""; display:block; width:100%; height:96px;
/*這些不動*/ margin-top:10px; border-radius:10px;
/*顏色*/ background:#FAA;
}
.dash-group-left:after {
/*這些不動*/ content:""; display:block; width:86px; height:5px;
/*這些不動*/ border-radius:8px; position:absolute; top:15px; left:80px;
/*這些不動*/ background:no-repeat 0 0/100% 100%;
/*圖片*/ background-image:url(圖片網址);
}