-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
89 lines (75 loc) · 1.1 KB
/
app.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
html {
font-family: sans-serif;
}
body {
margin: 8px;
padding-right: 8px;
}
section {
max-width: 50em;
margin: auto;
}
button {
display: block;
width: 100%;
margin: 5px;
font-size: inherit;
line-height: 2;
margin-top: 1em;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type=number] {
-moz-appearance: textfield;
}
section table,
section video,
section img,
section div,
section canvas {
margin: auto;
}
section video,
section img,
section canvas {
display: block;
max-width: 100%;
}
th {
text-align: center;
}
td {
text-align: right;
}
#page-loading img {
position: absolute;
top: 50%;
left: 50%;
width: 512px;
height: 512px;
margin-left: -256px;
margin-top: -256px;
}
@media (max-width: 512px) {
#page-loading img {
width: 256px;
height: 256px;
margin-left: -128px;
margin-top: -128px;
}
}
@media (max-width: 256px) {
#page-loading img {
display: none;
}
}
#debug-table td:nth-child(9) {
background-color: #4c4;
}
#debug-table input {
width: 1em;
font-size: inherit;
}