1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
以下有三種版本可以選,只選一個用就好了

===================================

/*頂端橫條改顏色*/'{}
:not(*) /* {*/,/*}*/ .bar-color {
	/*顏色*/ background:#FAAA;
}'{}

===================================

/*頂端橫條改漸層色*/'{}
:not(*) /* {*/,/*}*/ .bar-color {
	/*顏色*/ background:linear-gradient(to left, #FAAA, #AAFA);
}'{}

===================================

/*頂端橫條改圖片*/'{}
:not(*) /* {*/,/*}*/ .bar-color {
	/*圖片*/ background:url(圖片網址);
}'{}

===================================