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

/*主控台樣式*/
#dashboard_holder {
  width: 100%;
  max-width: none; 
  position: absolute;
  top: 42px;
  background: rgba(255,87,77,0.6);
  z-index: 5001;
  padding: 0;
}
#plurk-dashboard {
  width: 98%;
  max-width: 980px;
  margin: 0 auto;
}
/*滑鼠移上前不顯示主控台*/
#dashboard_holder .dash-group-left, #dashboard_holder .dash-group-right {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s linear, margin 0.5s ease-in;
}
/*滑鼠移上後顯示主控台*/
#dashboard_holder:hover .dash-group-left, #dashboard_holder:hover .dash-group-right {
  max-height: 1000px;
  margin: 35px 0 20px;
} 
/*滑鼠移上發文區不顯示主控台*/
#dashboard_holder #plurk-dashboard .dash-group-form:hover ~ * {
  max-height: 0;
  margin: 0;
  overflow: hidden;
}
/*吊掛噗寶*/
#dashboard_holder::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 10px;
  width: 250px;
  height: 250px;
  background-repeat: no-repeat;
  background-size: 250px;
  background-image: url(https://images.plurk.com/8zxXlMvVa7cZKN387Yvzi.png);/*放圖片網址*/
}
/*發文區固定至視窗下方*/
#plurk-dashboard .dash-group-form {
  position: fixed;
  left: 50%; 
  transform: translate(-50%, 0);
  bottom: 50px;
  max-width: 900px;
}