-
Notifications
You must be signed in to change notification settings - Fork 1
/
illo.css
75 lines (61 loc) · 1005 Bytes
/
illo.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
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
}
main {
height: 100%;
display: grid;
grid-template-columns: 0.33fr 0.66fr;
grid-template-areas: 'controls results';
}
section.controls {
grid-area: controls;
background-color: #f9f9f9;
padding: 16px;
min-width: 300px;
height: 100%;
}
section.controls section {
padding: 12px 0 12px 0;
}
section.results {
grid-area: results;
/*margin: auto;*/
height: 100%;
}
section.illustration {
margin: auto;
padding: 36px;
}
section.code {
height: 400px;
width: 100%;
}
.controls_illo {
border-bottom: 1px solid lightgrey;
}
div.parameter {
margin: 12px 0 12px 0;
}
div.subparameter {
margin: 12px 0 12px 24px;
}
input:disabled {
color: #7c7c7c;
}
.controls_shape input {
display: block;
margin: 6px 0 10px 0;
}
canvas {
border: 1px dotted lightgray;
}
#container {
height: 300px;
width: 100%;
position: relative;
top: 0;
}