-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
59 lines (51 loc) · 894 Bytes
/
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
body {
margin: 0;
}
/*TODO: somehow make canvases side by side */
canvas {
float:left;
border-style: solid;
border-width: thin;
margin:0;
padding:0;
}
div {
line-height: 2;
}
.colormap {
float: none;
margin: 0.1em;
padding: 0.1em;
}
/* floating at the top...*/
.float-top-group {
position: absolute;
float: top;
margin: 0.5em;
}
/* A bunch of things surrounded by a border */
.button-group {
border-style: solid;
border-width: thin;
border-radius: 10px;
background-color: rgba(210, 210, 210, 0.8);
color: #000;
padding: 0.5em;
margin: 0.5em;
}
.right-group {
float: right;
position: absolute;
right: 0;
background-color: #dcdcdc;
padding: 0.5em;
margin: 0.5em;
}
.bottom-group {
position: absolute;
left: 0;
bottom: 0;
float: bottom;
padding: 0.5em;
margin: 0.5em;
}