-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.css
186 lines (142 loc) · 2.22 KB
/
default.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
@charset "utf-8";
body {
margin: 3ex 0ex 10ex 2ex;
}
article {
line-height: 1.8;
}
nav span {
margin-right: 1ex;
}
section {
margin-top: 3ex;
}
div {
margin: 1ex 0ex;
}
div.space {
margin-top: 3ex;
}
select {
padding: 0.5ex 1ex;
width: 80vw;
font-size: large;
}
button {
width: 80vw;
font-size: large;
}
textarea {
width: 80vw;
height: 20ex;
}
input {
width: 80vw;
}
input[type="checkbox"] {
margin-right: 2ex;
width: auto;
}
input[type="radio"] {
width: auto;
}
table.border {
border-collapse: collapse;
margin-bottom: 2ex;
}
table.border tr th {
border: 1px solid black;
padding: 0.5ex;
}
table.border tr td {
border: 1px solid black;
padding: 0.5ex;
}
#display {
margin-bottom: 3ex;
}
#number label {
font-size: large;
}
#key {
border-collapse: collapse;
border-spacing: 0ex;
}
#key td {
width: 15vw;
text-align: center;
}
#key button {
width: 100%;
}
#key span {
font-size: small;
}
#key.solid button {
color: blue;
}
#key.decision button {
color: black;
}
#key.candidate button {
color: green;
}
.note {
padding-left: 1em;
font-size: small;
}
.symbol {
text-align: center;
}
.valid {
color: blue;
}
.invalid {
color: red;
}
.error {
background-color: pink;
}
@media (min-width: 768px) {
article {
line-height: 1.5;
}
select {
width: auto;
}
button {
width: auto;
}
textarea {
width: 50ex;
height: 20ex;
}
input[type="number"] {
width: 30ex;
}
#board {
width: 300px;
height: 300px;
}
#number {
margin-left: 1ex;
}
#key td {
width: 50px;
}
#key button {
height: 3ex;
font-size: x-large;
}
.table {
display: table;
}
.table .row {
display: table-row;
}
.table .row .cell {
display: table-cell;
vertical-align: top;
padding: 0ex 2ex 1ex 0ex;
}
}