blob: 2f0db1aa5f22132cfdd694ad4b6997514a341e32 (
plain)
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
|
html, body,
h1, h2 {
margin: 0;
padding: 0;
}
body {
display: flex;
min-height: 100vh;
font-family: system-ui, sans-serif;
}
aside {
display: flex;
flex-direction: column;
padding: 1em;
gap: 1em;
width: 300px;
overflow: hidden;
resize: horizontal;
}
aside h1 {
display: flex;
gap: 1rem;
font-size: 1.5em;
}
aside h1 span {
display: flex;
}
aside section {
display: flex;
flex-direction: column;
gap: 4px;
}
aside section > div {
display: flex;
justify-content: space-between;
gap: 4px;
}
aside button,
aside label {
min-width: 80px;
}
aside div label + label {
text-align: right;
}
.grow {
flex-grow: 1;
min-width: 0;
max-width: unset;
}
button.icon {
border: none;
background: none;
appearance: none;
font: inherit;
min-width: 0;
cursor: pointer;
}
button.icon svg {
height: 0.5lh;
}
option.new {
color: #00000080;
}
#plot {
flex: 1 0 400px;
user-select: none;
}
|