-
Notifications
You must be signed in to change notification settings - Fork 0
/
css.css
80 lines (62 loc) · 1.13 KB
/
css.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
76
77
78
79
80
html, body {
margin: 0;
padding: 0;
}
body {
/*
To avoid margin collapsing or margins poking out from an inner element causing the body to not
full evelop its contents which could have an effect on the svg canvas
*/
padding: 1px;
}
article, aside, figure, footer, header, hgroup, menu, nav, section { display: block; }
body { font-family: Arial; font-size: 11px; }
ul { list-style: none; }
#svgcanvas {
position: absolute; left: 0px; top: 0px; bottom: 0;
border: solid 0px #484;
z-index: 100;
pointer-events: none;
}
#svgcanvas svg { display: block; }
#menu {
width: 100px;
height: 100px;
position: absolute;
top: 40px;
right: 40px;
background: navy;
}
#panels{
margin: 20px;
display: flex;
justify-content: space-around;
background: #eee;
}
#leftPanel, #rightPanel {
width: 400px;
float: left;
background: gold;
padding: 10px;
opacity: 0.5;
}
#leftPanel{
max-height: 150px;
}
#rightPanel {
margin-top: 350px;
}
strong {
display: block;
padding: 10px;
background: white;
width: 100px;
}
#getMappings {
display: block;
background: white;
margin-left: 40px;
width: 100px;
height: 40px;
padding: 10px;
}