blob: d233b02865bb94c4a2efa22ea6097368f7149db3 (
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
body {
text-align: center;
font-family: sans-serif;
}
#content
{
max-width: 300px;
margin: auto;
}
#pinyin-input
{
border: solid 2px #2af;
}
#current-character
{
margin-top: 0;
margin-bottom: 0;
font-size: 200px;
}
@-webkit-keyframes shake
{
0%, 100% { transform: translateX(0); }
25%, 75% { transform: translateX(10px); }
50% { transform: translateX(-10px); }
}
@keyframes shake
{
0%, 100% { transform: translateX(0); }
25%, 75% { transform: translateX(10px); }
50% { transform: translateX(-10px); }
}
.shake
{
animation-name: shake;
animation-duration: 0.3s;
animation-iteration-count: 1;
}
.unselectable
{
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
}
.StyleButton
{
padding: 10px;
border-radius: 8px;
border-style: solid;
border-width: 2px;
display: inline-block;
}
.StyleButtonEnabled
{
border-color: #2af;
cursor: pointer;
}
.StyleButtonEnabled:hover
{
background-color: #eee;
}
.StyleButtonDisabled
{
color: #444;
border-color: #444;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.StyleDropdownButton
{
padding: 10px;
border-radius: 8px;
border-style: solid;
border-width: 2px;
display: inline-block;
min-width: 100px;
}
.StyleDropdownContainer
{
position: relative;
display: inline-block;
}
.StyleDropdownContent
{
display: none;
position: absolute;
min-width: 160px;
max-height: 500%;
z-index: -1;
overflow: scroll;
}
.StyleDropdownContent a
{
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.StyleDropdownContent a:hover
{
background-color: #f1f1f1;
}
.StyleDropdownContainer:hover .StyleDropdownContent
{
display: block;
}
|