1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
/*控制台懸浮收在下方*/
#dashboard_holder {
	/*這裡勿動*/ position:fixed; z-index:6000; bottom:0;
	/*這裡勿動*/ margin:0; padding:0; height:auto;
	/*寬度*/ width:940px;   transition:max-height .6s;
	/*收起時露出多少*/ max-height:20px;
	/*左右位置(自訂)*/ left:50px; /*left可改right*/
	/*左右位置(置中版本)*/ left:calc((100vw - 940px) / 2);
	/*左右位置兩種選一種用就好,不用的那行可刪除*/
}
#dashboard_holder:hover { max-height:600px; }
#plurk-dashboard {
	/*不須底色包一起的話可以把這整個刪除*/
	/*【可刪】背景色*/ background:#003A;
	/*【可刪】圓角大小*/ border-radius:10px;
	/*【可刪】四周留空間大小*/ padding:15px;
}