blob: d1b837db02ec9626d12e748ea9f0973fc796064a (
plain)
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
|
/* body margin */
body {
margin: 0;
width: 100vw;
height: 100vh;
}
/* vertical center card in body */
body {
display: flex;
flex-direction: column;
justify-content: center;
}
/* default font sizes (mobile) */
.mobile #card .foreign { font-size: 1.75rem; }
.mobile #card .native { font-size: 1.25rem; }
/* default font sizes (desktop) */
#card .foreign { font-size: 1.5rem; }
#card .native { font-size: 1.0rem; }
/* default text alignment and layout */
#card { text-align: center; }
#card > * > span { display: block; }
/* separator defaults */
#separator {
border: none;
opacity: 20%;
margin: 0;
}
/* separator color */
#separator { background-color: black; }
.nightMode #separator { background-color: white; }
/* separator size */
#card.horizontal-layout #separator { height: 10px; }
#card.vertical-layout #separator { width: 10px; }
/* hide answer and separator on card front */
#card.front #back,
#card.front hr {
display: none;
}
/* extra space above complete translated sentence */
#card #back #sentence-translation { margin-top: 2em; }
/* blur spoiler */
.spoiler {
transition: filter 300ms;
cursor: pointer;
}
.spoiler.hidden { filter: blur(0.3rem); }
.spoiler.visible { filter: blur(0rem); }
/* fill display horizontally or vertically */
#card.horizontal-layout { width: 100vw; }
#card.vertical-layout { height: 100vh; }
/* grid column layout for vertical card layout */
#card.vertical-layout > * { grid-row: 1; }
#card.vertical-layout {
display: grid;
grid-auto-columns: 1fr auto auto;
}
#card.vertical-layout #back { flex-direction: column; }
#card.vertical-layout #back,
#card.vertical-layout #front {
display: flex;
justify-content: center;
}
/* grid column settings */
#card.vertical-layout #back { grid-column: 1; }
#card.vertical-layout #separator { grid-column: 2; }
#card.vertical-layout #front { grid-column: 3; }
/* default text element spacing */
#card.horizontal-layout > * > span,
#card.vertical-layout > #back > span {
padding: 0 1em;
margin: 0.5em auto;
}
#card.vertical-layout #sentence {
padding: 1em 0;
margin: auto 0.5em;
}
/* vertical japanese text only in sentence */
#card.vertical-layout #sentence { writing-mode: vertical-rl; }
/* max text column width (~30 characters in japanese, ~50 in latin) */
#card.vertical-layout #sentence { max-height: 30em; }
#card.horizontal-layout span,
#card.vertical-layout #back span {
max-width: 30em;
margin-left: auto;
margin-right: auto;
}
/* display kana reading below kanji in vertical layout */
#card.vertical-layout #target-word-reading .reading { display: block; }
|