aboutsummaryrefslogtreecommitdiffhomepage
path: root/style.css
blob: 364ae86d501f4ea609813879a9def65194b86a36 (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
html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: #fafafa;
}

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;
}

input#slider {
    width: 100%;
    opacity: 0;
}

input#term {
    width: 100%;
    font-size: 2em;
}

button#render {
    width: 100%;
    height: 3em;
    font-size: 2em;
}

.inputWrap {
    display: block;
    margin: 0 auto;
    width: fit-content;
}