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
/*主控台固定於上方,發文區固定於畫面下方*/

#dashboard_holder {
  position: absolute;
  top: 42px;  /*上方橫條高度*/
  width:100%;
  max-width: none;
}
#plurk-dashboard {
  margin: 0 auto;
  width:98%;
  max-width: 980px;
}
#timeline_holder {
  margin-top: 400px; /*根據主控台高度手動調整,數值越大河道越下面*/
}
/*發文區固定至視窗下方*/
#plurk-dashboard .dash-group-form {
  position: fixed;
  left: 50%; 
  transform: translate(-50%, 0);
  bottom: 50px;
  max-width: 900px;
  z-index:1400; /*發文區層數,越大越不容易被覆蓋*/
}