-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.css
More file actions
66 lines (50 loc) · 836 Bytes
/
default.css
File metadata and controls
66 lines (50 loc) · 836 Bytes
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
@charset "utf-8";
body {
line-height: 1.8;
margin-bottom: 10ex;
}
input {
width: 90vw;
}
button {
margin-top: 2ex;
width: 90vw;
}
svg {
border: 1px solid gray;
width: 90vw;
height: 90vw;
}
.table .row {
margin-bottom: 2ex;
}
.error {
color: red;
}
@media (orientation: landscape) {
body {
line-height: 1.5;
}
input {
width: 70vh;
}
button {
margin-top: 0ex;
width: auto;
}
svg {
width: 70vh;
height: 70vh;
}
.table {
display: table;
}
.table .row {
display: table-row;
}
.table .row .cell {
display: table-cell;
padding: 0.5ex 2ex 0.5ex 0ex;
vertical-align: middle;
}
}