-
Notifications
You must be signed in to change notification settings - Fork 0
/
stroke-input.css
143 lines (120 loc) · 1.87 KB
/
stroke-input.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
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
:root{
--key-fill: #181818;
--umbrella-orange: #FFCE73;
--umbrella-yellow: #FFFF80;
--umbrella-blue: #BBBBFF;
}
@font-face {
font-display: swap;
font-family: 'Stroke Input Font';
src: url('StrokeInputFont.ttf') format('truetype');
}
a {
color: var(--umbrella-blue);
}
body {
background: black;
color: white;
font-family: sans-serif;
margin: 0;
overflow-wrap: break-word;
padding: 1em;
}
button {
font-size: 16px;
margin: 0.1em 0.15em;
min-width: 1em;
padding: 0.25em 0.3em;
}
footer {
border-top: 2px solid white;
margin-top: 1.5em;
padding-top: 0.75em;
}
h1 {
font-size: 1.4em;
margin-top: 0.3em;
}
h2 {
font-size: 1.3em;
margin-top: 1.5em;
}
h3 {
font-size: 1.1em;
}
html {
background: var(--key-fill);
margin: 0 auto;
max-width: 44em;
}
img {
vertical-align: middle;
}
li {
margin-bottom: 0.5em;
}
.candidate-group {
display: inline-block;
}
.candidate-group dd {
color: var(--umbrella-orange);
display: inline;
margin: 0 1em 0 0.3em;
}
.candidate-group dt {
display: inline;
}
.candidate-group dt::after {
content: ':';
}
.candidates-row {
height: 6em;
line-height: 1.7;
vertical-align: baseline;
}
.candidates-row td {
width: 100%;
}
.controls th, .controls td {
padding: 0.3em;
}
.disabled {
color: #FF5E5E;
}
.enabled {
color: lime;
}
.notice {
border: 1px solid white;
margin-top: 0.5em;
padding: 0.5em;
}
.strokes {
color: var(--umbrella-yellow);
font-family: 'Stroke Input Font';
}
#candidates {
margin: 0;
}
#candidates-pagination {
display: block;
margin: 0;
text-align: right;
}
#input {
box-sizing: border-box;
display: block;
font-size: 16px;
height: 7em;
margin: 0.5em auto;
width: 100%;
resize: vertical;
}
#input-container {
border: 2px solid white;
padding: 0.3em 0.7em 0;
margin: 1.5em 0;
}
#input-container table {
border-spacing: 0.7em 0.4em;
}