-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.css
38 lines (34 loc) · 1.29 KB
/
config.css
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
:root {
/* Practice direction */
--both-practice-icon: "⇔";
--both-practice-color: goldenrod;
--forward-practice-icon: "⇒";
--forward-practice-color: green;
--backward-practice-icon: "⇐";
--backward-practice-color: blue;
--disabled-practice-icon: "⇏";
--disabled-practice-color: tomato;
/* Special icons for questions.
Normally it would not make much sense to find the question given the answer, like "??? ?:: 42"
so you can enable showing a warning when this is the case.
If you use question cards to work around the CD-Framework and store arbitrary associative pairs
then you can disable this extra style in the Code section.
*/
--question-backward-practice-icon: "!⇐!";
--question-backward-practice-color: red;
--question-both-practice-icon: "!⇔!";
--question-both-practice-color: red;
/* Card type icons */
--concept-icon-color: green;
--descriptor-icon-color: royalblue;
--question-icon-color: mediumpurple;
--slot-icon-color: grey;
/* If you are using the ASCII Icons (enable in the Code section)
you can configure the content here. Unicode symbols should also work.
*/
--concept-icon: "〈C〉";
--descriptor-icon: "〈D〉";
--question-icon: "〈?〉";
--slot-icon: "〈S〉";
--rem-icon-font-weight: bold;
}