-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
113 lines (93 loc) · 1.29 KB
/
style.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
.line {
fill: none;
stroke: steelblue;
stroke-width: 1.5px;
}
.zoom {
cursor: move;
fill: none;
pointer-events: all;
}
.countries {
stroke: #f7f7f7;
fill: #d9d9d9;
}
.travel {
text-align: center;
}
.overlay {
fill: none;
pointer-events: all;
}
.focus {}
.led {
fill: #F87217;
stroke-width: 1.5px;
}
.marker {
fill: steelblue;
stroke: steelblue;
fill-opacity: .75;
transition: all .2s ease-in-out;
}
.selectedMarker {
fill: #8d3155;
fill-opacity: 1;
cursor: pointer;
}
.margin {
padding: 0px;
border: 0px;
margin: auto;
}
.left {
float: left;
}
#titolo {
text-align: center;
border-bottom: 1px solid grey;
height: 185px;
width: 90%;
margin: auto;
}
#titolo h5 {
width: 200px;
margin: auto;
}
#logo {
height: 130px;
}
#play {
height: 40px;
}
body {
font-family: bookerly;
text-align: center;
background-color: rgb(247, 247, 247);
width: 1920px;
height: 1080px;
}
div.tooltip {
position: absolute;
padding: 3px;
font-family: bookerly;
background: lightsteelblue;
border: 0px;
border-radius: 8px;
pointer-events: none;
}
#box {
text-align: left;
padding-top: 5%;
padding-left: 20%;
}
.highlight {
color: #F87217;
font-weight: bold;
}
#plot-selector h5 {
display: inline-block;
}
.padding {
padding: 10px;
}