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

/*標題*/
#header {
  padding: 10px;
  font-weight: normal;
}

/*標題的字*/
.hitem {
  color: #e6eff5;
  opacity: 0.6;
}

.hitem:hover {
  text-decoration: none;
  color: #fdedff;
  opacity: 1;
}

/*夜間模式分割線*/
.isMac.nightMode #header {
  /*border-bottom-color: rgba(69, 70, 71, 0.5);*/
  border: none;
}


body {

    background: linear-gradient(to right, #000000, #434343)

}