Skip to content
This repository was archived by the owner on Dec 30, 2023. It is now read-only.

Commit 0a4df86

Browse files
committed
Added map window files
1 parent 1cbbd71 commit 0a4df86

10 files changed

Lines changed: 22377 additions & 0 deletions

File tree

bulgaria.geojson

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

css/dc.css

Lines changed: 319 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,319 @@
1+
div.dc-chart {
2+
float: left;
3+
}
4+
5+
.dc-chart rect.bar {
6+
stroke: none;
7+
cursor: pointer;
8+
}
9+
10+
.dc-chart rect.bar:hover {
11+
fill-opacity: .5;
12+
}
13+
14+
.dc-chart rect.stack1 {
15+
stroke: none;
16+
fill: red;
17+
}
18+
19+
.dc-chart rect.stack2 {
20+
stroke: none;
21+
fill: green;
22+
}
23+
24+
.dc-chart rect.deselected {
25+
stroke: none;
26+
fill: #ccc;
27+
}
28+
29+
.dc-chart .empty-chart .pie-slice path {
30+
fill: #FFEEEE;
31+
cursor: default;
32+
}
33+
34+
.dc-chart .empty-chart .pie-slice {
35+
cursor: default;
36+
}
37+
38+
.dc-chart .pie-slice {
39+
fill: white;
40+
font-size: 12px;
41+
cursor: pointer;
42+
}
43+
44+
.dc-chart .pie-slice.external{
45+
fill: black;
46+
}
47+
48+
.dc-chart .pie-slice :hover {
49+
fill-opacity: .8;
50+
}
51+
52+
.dc-chart .pie-slice.highlight {
53+
fill-opacity: .8;
54+
}
55+
56+
.dc-chart .selected path {
57+
stroke-width: 3;
58+
stroke: #ccc;
59+
fill-opacity: 1;
60+
}
61+
62+
.dc-chart .deselected path {
63+
stroke: none;
64+
fill-opacity: .5;
65+
fill: #ccc;
66+
}
67+
68+
.dc-chart .axis path,
69+
.dc-chart .axis line {
70+
fill: none;
71+
stroke: #000;
72+
shape-rendering: crispEdges;
73+
}
74+
75+
.dc-chart .axis text {
76+
font: 10px sans-serif;
77+
}
78+
79+
.dc-chart .grid-line {
80+
fill: none;
81+
stroke: #ccc;
82+
opacity: .5;
83+
shape-rendering: crispEdges;
84+
}
85+
86+
.dc-chart .grid-line line {
87+
fill: none;
88+
stroke: #ccc;
89+
opacity: .5;
90+
shape-rendering: crispEdges;
91+
}
92+
93+
.dc-chart .brush rect.background {
94+
z-index: -999;
95+
}
96+
97+
.dc-chart .brush rect.extent {
98+
fill: steelblue;
99+
fill-opacity: .125;
100+
}
101+
102+
.dc-chart .brush .resize path {
103+
fill: #eee;
104+
stroke: #666;
105+
}
106+
107+
.dc-chart path.line {
108+
fill: none;
109+
stroke-width: 1.5px;
110+
}
111+
112+
.dc-chart circle.dot {
113+
stroke: none;
114+
}
115+
116+
.dc-chart g.dc-tooltip path {
117+
fill: none;
118+
stroke: grey;
119+
stroke-opacity: .8;
120+
}
121+
122+
.dc-chart path.area {
123+
fill-opacity: .3;
124+
stroke: none;
125+
}
126+
127+
.dc-chart .node {
128+
font-size: 0.7em;
129+
cursor: pointer;
130+
}
131+
132+
.dc-chart .node :hover {
133+
fill-opacity: .8;
134+
}
135+
136+
.dc-chart .selected circle {
137+
stroke-width: 3;
138+
stroke: #ccc;
139+
fill-opacity: 1;
140+
}
141+
142+
.dc-chart .deselected circle {
143+
stroke: none;
144+
fill-opacity: .5;
145+
fill: #ccc;
146+
}
147+
148+
.dc-chart .bubble {
149+
stroke: none;
150+
fill-opacity: 0.6;
151+
}
152+
153+
.dc-data-count {
154+
float: right;
155+
margin-top: 15px;
156+
margin-right: 15px;
157+
}
158+
159+
.dc-data-count .filter-count {
160+
color: #3182bd;
161+
font-weight: bold;
162+
}
163+
164+
.dc-data-count .total-count {
165+
color: #3182bd;
166+
font-weight: bold;
167+
}
168+
169+
.dc-data-table {
170+
}
171+
172+
.dc-chart g.state {
173+
cursor: pointer;
174+
}
175+
176+
.dc-chart g.state :hover {
177+
fill-opacity: .8;
178+
}
179+
180+
.dc-chart g.state path {
181+
stroke: white;
182+
}
183+
184+
.dc-chart g.selected path {
185+
}
186+
187+
.dc-chart g.deselected path {
188+
fill: grey;
189+
}
190+
191+
.dc-chart g.selected text {
192+
}
193+
194+
.dc-chart g.deselected text {
195+
display: none;
196+
}
197+
198+
.dc-chart g.county path {
199+
stroke: white;
200+
fill: none;
201+
}
202+
203+
.dc-chart g.debug rect {
204+
fill: blue;
205+
fill-opacity: .2;
206+
}
207+
208+
.dc-chart g.row rect {
209+
fill-opacity: 0.8;
210+
cursor: pointer;
211+
}
212+
213+
.dc-chart g.row rect:hover {
214+
fill-opacity: 0.6;
215+
}
216+
217+
.dc-chart g.row text {
218+
fill: white;
219+
font-size: 12px;
220+
cursor: pointer;
221+
}
222+
223+
.dc-legend {
224+
font-size: 11px;
225+
}
226+
227+
.dc-legend-item {
228+
cursor: pointer;
229+
}
230+
231+
.dc-chart g.axis text {
232+
/* Makes it so the user can't accidentally click and select text that is meant as a label only */
233+
-webkit-user-select: none; /* Chrome/Safari */
234+
-moz-user-select: none; /* Firefox */
235+
-ms-user-select: none; /* IE10 */
236+
-o-user-select: none;
237+
user-select: none;
238+
pointer-events: none;
239+
}
240+
241+
.dc-chart path.highlight {
242+
stroke-width: 3;
243+
fill-opacity: 1;
244+
stroke-opacity: 1;
245+
}
246+
247+
.dc-chart .highlight {
248+
fill-opacity: 1;
249+
stroke-opacity: 1;
250+
}
251+
252+
.dc-chart .fadeout {
253+
fill-opacity: 0.2;
254+
stroke-opacity: 0.2;
255+
}
256+
257+
.dc-chart path.dc-symbol,
258+
g.dc-legend-item.fadeout {
259+
fill-opacity: 0.5;
260+
stroke-opacity: 0.5;
261+
}
262+
263+
.dc-hard .number-display {
264+
float: none;
265+
}
266+
267+
.dc-chart .box text {
268+
font: 10px sans-serif;
269+
-webkit-user-select: none; /* Chrome/Safari */
270+
-moz-user-select: none; /* Firefox */
271+
-ms-user-select: none; /* IE10 */
272+
-o-user-select: none;
273+
user-select: none;
274+
pointer-events: none;
275+
}
276+
277+
.dc-chart .box line,
278+
.dc-chart .box circle {
279+
fill: #fff;
280+
stroke: #000;
281+
stroke-width: 1.5px;
282+
}
283+
284+
.dc-chart .box rect {
285+
stroke: #000;
286+
stroke-width: 1.5px;
287+
}
288+
289+
.dc-chart .box .center {
290+
stroke-dasharray: 3,3;
291+
}
292+
293+
.dc-chart .box .outlier {
294+
fill: none;
295+
stroke: #ccc;
296+
}
297+
298+
.dc-chart .box.deselected .box {
299+
fill: #ccc;
300+
}
301+
302+
.dc-chart .box.deselected {
303+
opacity: .5;
304+
}
305+
306+
.dc-chart .symbol{
307+
stroke: none;
308+
}
309+
310+
.dc-chart .heatmap .box-group.deselected rect {
311+
stroke: none;
312+
fill-opacity: .5;
313+
fill: #ccc;
314+
}
315+
316+
.dc-chart .heatmap g.axis text {
317+
pointer-events: all;
318+
cursor: pointer;
319+
}

0 commit comments

Comments
 (0)