-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (84 loc) · 1.34 KB
/
style.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
html, body {
padding: 0;
margin: 0;
width: 100%;
background-color: white;
}
main {
width: min(80vh, 90vw);
display: flex;
align-items: center;
justify-content: space-around;
flex-direction: column;
margin: 0 auto;
}
main > * {
width: 100%;
margin: 16px;
}
canvas {
max-height: min(80vh, 90vw);
max-width: 100%;
width: auto;
flex-basis: auto;
border: 1px solid black;
background-color: white;
}
textarea#term {
width: 100%;
font-size: 1.3em;
border: 1px solid black;
box-sizing: border-box;
}
button#render {
cursor: pointer;
width: 100%;
height: 3em;
font-size: 2em;
border: 1px solid black;
border-radius: 0;
background-color: white;
}
select {
border: 1px solid black;
background-color: white;
margin: 8px;
}
span#error {
color: red;
}
fieldset {
display: flex;
flex-flow: column;
}
fieldset div {
display: flex;
align-items: center;
flex-wrap: wrap;
}
pre {
white-space: pre-wrap;
}
details summary {
cursor: pointer;
}
footer {
text-align: center;
}
footer a {
text-decoration: none;
color: black;
}
footer > ul {
list-style-type: none;
padding: 0;
}
footer > ul > li {
display: inline;
margin: 0 8px;
}
.inputWrap {
display: block;
margin: 0 auto;
width: fit-content;
}