-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsequence.css
85 lines (74 loc) · 1.14 KB
/
sequence.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
81
82
83
84
85
body {
font-family: 'Open Sans', sans-serif;
font-size: 12px;
font-weight: 400;
background-color: #fff;
margin: 0px;
width: 100%;
height: 100%;
}
#main {
z-index: 110;
float: left;
position: fixed;
}
#sidebar {
z-index: 110;
right: 0px;
top: 0px;
overflow: scroll;
height: 100%;
position: fixed;
}
#sequence {
height: 70px;
}
#title {
font-size: 2em;
font-weight: 900;
color: #eaeded;
text-align: center;
padding: 5px 10px 5px 10px;
width: 210px;
word-wrap: normal;
background-color: #2f4f4f;
position: fixed;
min-height: 80px
top: 0px;
right: 0px;
text-shadow: 0px 0px 10px rgba(0,0,120,0.5);
box-shadow: 0px 10px 10px rgba(0,0,0,0.5);
}
#legend {
padding: 75px 0 0 0;
}
#sequence text, #legend text {
font-weight: 600;
fill: #fff;
}
#chart {
position: relative;
}
#chart path {
stroke: #fff;
}
#explanation {
position: absolute;
top: 240px;
left: 305px;
width: 200px;
text-align: center;
color: #666;
z-index: -1;
}
#percentage {
font-size: 5em;
font-weight: 900;
}
#mapid {
width: inherit;
height: inherit;
min-height: 300px;
position: fixed;
z-index: 0;
}