-
Notifications
You must be signed in to change notification settings - Fork 0
/
card-template.txt
53 lines (43 loc) · 931 Bytes
/
card-template.txt
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
// front
<span style="font-size: 50px; ">{{Vocabulary-Kanji}}</span>
// back
{{FrontSide}}
<hr id=answer>
{{Vocabulary-Audio}}
{{Sentence-Audio}}
<span style="font-size: 30px; ">{{Vocabulary-English}}</span>
<br>
<span style="font-size: 35px; ">{{Vocabulary-Kana}}</span>
<br>
<span style="font-size: 14px; ">{{Vocabulary-Pos}}</span>
<br>
<span style="font-size: 40px; ">{{furigana:Reading}}</span>
<br><br>
<details>
<summary>...</summary>
<span style="font-size: 25px; ">{{Sentence-English}}</span>
</details>
<br>
// css
.card {
display: flex;
font-family: arial;
font-size: 25px;
text-align: center;
justify-content: center;
align-items: center;
height: 90vh;
}
.card.nightMode{
color: White;
background-color: #2F2F31;
}
details{
cursor: pointer;
}
summary:focus {
outline: 0;
}
details summary::-webkit-details-marker {
display:none;
}