-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (49 loc) · 921 Bytes
/
style.css
File metadata and controls
63 lines (49 loc) · 921 Bytes
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
body {
background: #ccc;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
div.dev {
border: solid 1px red;
}
div.dev div {
border: dashed 1px green;
}
div#chart-holder {
width 600px;
background: white;
margin: auto;
font-size: 16px;
}
div#chart-components {
height: 400px;
position: relative; #makes chart-components the relative parent
}
div#main, div#sidebar {
position: absolute; #makes main and sidebar relative to chart-components
}
div#main {
width: 75%;
height: 100%;
background: #eee;
}
div#sidebar {
right: 0;
width: 25%;
height: 100%;
}
svg#chart {
width: 100%;
height: 100%;
}
#chart circle { fill: #11617b;}
#chart line { stroke: #555555; stroke-width: 2;}
#chart rect { stroke: red; fill: white;}
#chart polygon { fill: green;}
#chart path { stroke: red; fill: none;}
#lead {
font-size: 150%;
}
.alert {
color:red;
background:yellow;
}