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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
custom_deckbrowser.css

/*數字顏色、0以外的粗體*/
/*平常只用night mode所以只寫了night mode*/
.nightMode .review-count {
  color: #bfd6c5;
  font-weight: bold;
}
.nightMode .new-count {
  font-weight: bold;
  color: #aec2d6;
}
.nightMode .learn-count {
  font-weight: bold;
  color: #e8c3c5;
}
.nightMode .zero-count {
  color: #52575c;
}

/*以下為表格設定*/
/*表格內顏色統一、增加行距*/
a.deck {
  color: #e6eff5;
  margin: 5px;
  opacity: 0.8;
}

/*hover時的顏色、刪掉hover時的底線*/
a.deck:hover {
  color: #fdedff;
  text-decoration: none;
}

/*刪掉醜陋的下標線*/
tr.deck td {
  border-bottom: none;
}

/*header(表格標題)改顏色*/
th {
  color: #e6eff5;
  opacity:0.9;
}

/*表格內容使用細一點的字體*/
td {
  font-weight: lighter;
}

/*把整個表格往下移*/
/*I'm using this to adjust the stats line bc I don't know the class name of that.*/
body {
  margin: 3em;
  color: rgba(147, 177, 196, 0.7);
  font-weight: lighter;
}

/*右上角兩項計數小標題(新卡片/到期)*/
.count {
  opacity: 0.8;
}

/*折疊符號改顏色*/
.collapse {
  color: #e691a3;
}

/*filtered deck需要單獨改色*/
.filtered {
  color: #c2ccff !important;
}

/*gear圖片非正方形需要改設定*/
.gears {
  width: 0.7em;
  height: 1em;
  opacity: 0.5;
  padding-top: 0.2em;
}