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
custom_toolbar-bottom.css


#header {
  border-bottom: none;
  margin-bottom: 14px;
  margin-top: 12px;
  padding: 10px;
}


body {
  margin: 16px 20px 20px;
  /*padding: 0;*/
}

/*全體按鈕,然而對nightMode來說就是個笑話(沒用)*/
button {
  height: 40px;
  /*min-width: 60px;
  white-space: nowrap;*/
  margin: 0.5em 0.6em;
}

/*調整這邊才有用!!!優先於review-bottom,數值會影響!!!*/
.nightMode button {
  border-radius: 30px;
  /*我想不到別的方法讓他border消失,只好改成透明*/
  border-color: rgba(0,0,0,0);
  color: #e6eff5;
  background: rgba(195, 208, 227, 0.1);
  box-shadow: none;
  -webkit-box-shadow: none;
  opacity: 0.75;
  padding: 0px 15px;
}

.nightMode button:hover {
  color: #d7d2cc;
  background: none;
}