-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
138 lines (124 loc) · 2.29 KB
/
styles.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
body {
font-family: "Helvetica Neue", "Roboto", sans-serif;
font-size: 12px;
background-color: #33333f;
margin: 0 auto 0 auto;
padding: 0;
width: 840px;
}
.allcontent {
background-color: white;
}
.box {
display: block;
background-color: #f0f0fb;
}
.subbox {
padding: 0em 1em;
width: 250px;
}
.header {
font-size: 11pt;
background-color: #d0d0e5;
}
input {
font-family: "Helvetica Neue", "Roboto", sans-serif;
}
select {
font-family: "Helvetica Neue", "Roboto", sans-serif;
}
#freqrange {
background-color: #f0f0fb;
}
#circle circle {
fill: none;
pointer-events: all;
}
.circlechart {
margin: 0 auto 0 auto;
width: 700px;
}
.barchart {
margin-left: 30px;
}
path.chord {
stroke: #000;
stroke-width: .25px;
transition: opacity 0.2s;
}
#circle:hover path.fade {
opacity: 0.075;
}
.bar {
fill: darkgray;
}
.bar:hover {
fill: brown;
}
.axis {
font-family: "Helvetica Neue", "Roboto", sans-serif;
font-size: 11px;
}
.axis path,
.axis line {
fill: none;
stroke: darkgray;
shape-rendering: crispEdges;
}
.axis text {
font-family: "Helvetica Neue", "Roboto", sans-serif;
font-size: 11px;
color: darkgray;
}
.x.axis path {
display: none;
}
/* fromhttp://bl.ocks.org/Caged/6476579 */
/* Creates a small triangle extender for the tooltip */
.d3-tip {
line-height: 1;
font-weight: bold;
padding: 12px;
background: rgba(0, 0, 0, 0.8);
color: #fff;
border-radius: 2px;
}
/* Creates a small triangle extender for the tooltip */
.d3-tip:after {
box-sizing: border-box;
display: inline;
font-size: 10px;
width: 100%;
line-height: 1;
color: rgba(0, 0, 0, 0.8);
content: "\25BC";
position: absolute;
text-align: center;
}
/* Style northward tooltips differently */
.d3-tip.n:after {
margin: -1px 0 0 0;
top: 100%;
left: 0;
}
.fd-zone {
position: relative;
overflow: hidden;
width: 15em;
margin: 0 auto;
text-align: center;
}
.fd-file {
opacity: 0;
font-size: 118px;
position: absolute;
right: 0;
top: 0;
z-index: 1;
padding: 0;
margin: 0;
cursor: pointer;
filter: alpha(opacity=0);
font-family: sans-serif;
}
.fd-zone.over { border-color: maroon; background: #eee; }