blob: 752487e31690985a17058b1da72945678f179500 (
plain) (
blame)
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
|
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;
}
.inputWrap {
display: block;
margin: 0 auto;
width: fit-content;
}
|