forked from carinehuerbin/Open-Data-Visualisation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
87 lines (75 loc) · 1.51 KB
/
Copy pathstyle.css
File metadata and controls
87 lines (75 loc) · 1.51 KB
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
.municipalities {
fill: WhiteSmoke;
stroke: #000; //#fff;
stroke-width: 0.5;
}
.lakes {
fill: lightblue;
stroke: #000; //#fff;
stroke-width: 0.75;
}
div.tooltip {
position: absolute;
text-align: center;
width: auto;
height: auto;
padding: 10px;
font: 12px sans-serif;
color: #ffffff;
background: #000000;
border: 0px;
border-radius: 8px;
pointer-events: none;
}
.h1 {
font-family: sans-serif;
font-weight: normal;
font-size: 16;
}
.h3 {
font-family: sans-serif;
font-weight: lighter;
font-size: 14;
}
.h6 {
font-family: sans-serif;
font-weight: lighter;
font-size: 13;
}
.p {
font-family: sans-serif;
font-weight: lighter;
font-size: 12;
}
.nav {
font-family: sans-serif;
font-weight: lighter;
font-size: 12;
}
body {
color: "white";
}
.jumbotron {
background: url('https://www.wwf.ch/sites/default/files/styles/key_visual_large_16_10/public/2017-04/Solar-Panels-Switzerland.jpg?itok=jUrCQunc') center no-repeat;
background-size: cover;
}
a:link {
color: blue;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: green;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: red;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: none;
background-color: transparent;
text-decoration: underline;
}