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
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
custom_reviewer-bottom.css

.nightMode .review-count {
  color: #bfd6c5;
}
.nightMode .new-count {
  color: #aec2d6;
}
.nightMode .learn-count {
  color: #e8c3c5;
}
.nightMode .zero-count {
  color: #52575c;
}


body {
  margin: 16px 20px 20px;
  /*padding: 0;*/
}

/*全體按鈕,然而對nightMode來說就是個笑話(沒用)*/
button {
  height: 40px;
  /*min-width: 60px;
  white-space: nowrap;
  margin: 0.5em;*/
}

/*調整這邊才有用!!!會被toolbar的設定影響,toolbar會覆寫!!!*/
.nightMode button {
  /*border-radius: 30px;
  background: none;
  box-shadow: none;
  -webkit-box-shadow: none;*/
  opacity: 1;
}

/*中間那排按鈕(顯示答案、簡單、困難等等)*/
.stat {
  padding-top: 3px;
}

/*左右兩側的兩個按鈕(編輯、其他)*/
.stat2 {
  /*padding-top: 3px;
  font-weight: normal;*/
}

/*上面的字(4天、10分鐘等等)*/
.nobold {
  font-weight: lighter;
  font-size: 12px;
  /*display: inline-block;
  padding-top: 4px;*/
  color: #e6eff5;
  opacity: 0.7;
  padding-bottom: 3px;
}

/* the "Show Answer" button */
#ansbut {
  color: #e6eff5;
  opacity: 0.7;
  border-radius: 6px;
  margin-bottom: 0em;
  width: 360px;
  background: linear-gradient(to left, #485563, #29323c) !important;
  border: none;
}

#ansbut:hover {
  color: #d7d2cc;
  background: rgba(195, 208, 227, 0.1) !important;
}

/* All rating buttons */
#middle button {
  padding: 0px 10px !important;
  margin:0px 5px !important;
  background: none;
}

/* the "Good" button */
#defease {
  color: #C6FFDD;
  border-color: rgba(198, 255, 221, 0.5) !important;
}
#defease:hover {
  background: rgba(195, 208, 227, 0.1);
}

/* the "Again" button */
button[onclick*="ease1"]:not(#defease) {
  color: #f7797d;
  border-color: rgba(247, 121, 125, 0.5) !important;
}
button[onclick*="ease1"]:not(#defease):hover {
  background: rgba(195, 208, 227, 0.1);
}

/* the "Hard" button */
button[onclick*="ease2"]:not(#defease) {
  color: #FBD786;
  border-color: rgba(251, 215, 134, 0.5) !important;
}
button[onclick*="ease2"]:not(#defease):hover {
  background: rgba(195, 208, 227, 0.1);
}

/* the "Easy" button */
button[onclick*="ease3"]:not(#defease),
button[onclick*="ease4"]:not(#defease) {
  color: #b8f0f5;
  border-color: rgba(184, 240, 245, 0.5)!important;
}
button[onclick*="ease3"]:not(#defease):hover,
button[onclick*="ease4"]:not(#defease):hover {
  background: rgba(195, 208, 227, 0.1);
}

/* the "Edit" and "More" button */
button[onclick*="edit"],
button[onclick*="more"] {
  color: #e6eff5;
  opacity: 0.7;
  border: none;
}

button[onclick*="edit"]:hover,
button[onclick*="more"]:hover {
  color: #d7d2cc;
  background: none;
}


/*夜間模式分割線,是border!!!!!!!!!
會影響margin呈現,故刪掉*/
.nightMode #outer {
  border: none;
}

body::before {
    background: linear-gradient(to right, #000000, #434343)
}