1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
/*取消預設橫條背景色*/
' {}:not(*)/* { */,/* } */
.bar-color {
	background: none;
}
' {}

/*自訂橫條背景色*/
' {}:not(*)/* { */,/* } */
 #top_bar .bar-color {
	background: rgba(255, 0, 255, 0.8); /*自行查找想要的RGB色碼 0.8是透明度*/
}
' {}