-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcss.css
102 lines (91 loc) · 1.2 KB
/
css.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
.outline {
stroke: black;
stroke-width: 0.03;
fill: white;
}
/* Number symbol */
.symbol {
stroke: black;
stroke-width: 0.05;
}
text {
font: 0.08em sans-serif;
fill: black;
text-anchor: middle;
}
@media screen {
svg.page {
border: 1px solid black;
max-height: 800px;
max-width: 800px;
}
}
@media print {
svg.page {
width: 840mm;
height: 1050mm;
}
#options {
display: none;
}
}
#loading {
display: none;
}
body.loading #loading {
display: block;
}
body.loading #everything {
display: none;
}
section ~ section {
margin-top: 2em;
}
#tool {
display: grid;
grid-template-columns: max-content 1fr;
grid-gap: 1em;
}
@media screen and (max-width: 1150px) {
#tool {
grid-template-columns: 1fr;
}
}
#options {
max-width: 20em;
margin-bottom: 3em;
padding-left: 1em;
}
#options label {
display: block;
margin: 1em 0;
}
#options .input {
font-size: 1em;
padding: 0;
width: 6em;
text-align: right;
float: right;
margin-left: 3em;
}
#options .warning {
float: right;
}
#options button {
width: 100%;
display: block;
margin: 2em 0;
font-size: 1.2em;
}
.explanation {
font-style: italic;
}
@page {
size: a0;
}
svg.page {
display: inherit;
}
#cards {
display: none;
}