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

/*數字顏色*/
.nightMode .review-count {
  color: #bfd6c5;
}
.nightMode .new-count {
  color: #aec2d6;
}
.nightMode .learn-count {
  color: #e8c3c5;
}
.nightMode .zero-count {
  color: #52575c;
}


/*deck名稱*/
h3 {
  color:#e6eff5;
  font-weight: lighter;
}

/*表格內容(新卡片、學習中、待複習)*/
td {
  color: #aab3bf;
}


.nightMode button {
  border-radius: 30px;
  border: none;
  color: #e6eff5;
  background: rgba(182, 197, 209, 0.2);
  box-shadow: none;
  -webkit-box-shadow: none;
  opacity: 0.75;
  padding: 15px 15px;
}

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