-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimple.css
72 lines (53 loc) · 975 Bytes
/
simple.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
@charset "utf-8";
nav span {
margin-right: 1ex;
}
article {
line-height: 1.8;
margin-bottom: 10ex;
}
input {
width: 90vw;
}
button {
margin-top: 2ex;
width: 90vw;
}
canvas {
margin-top: 2ex;
border: 1px solid gray;
}
.table .row .cell {
margin-bottom: 1ex;
}
@media (orientation: landscape) {
article {
line-height: 1.5;
}
input {
width: 90vh;
}
button {
width: 90vh;
}
@media (min-width: 768px) {
input {
width: auto;
}
button {
margin-top: 0ex;
width: auto;
}
.table {
display: table;
}
.table .row {
display: table-row;
}
.table .row .cell {
display: table-cell;
padding: 0ex 0.5ex;
vertical-align: middle;
}
}
}