forked from mgkollander/ak-history-webmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
101 lines (90 loc) · 2.02 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
/* Reset */
*, :after, :before {
box-sizing: border-box;
padding: 0;
margin: 0;
}
/* Full Page */
html, body {
height: 100%;
width: 100%;
position: relative;
min-height: 100%;
margin: 0;
padding: 0;
background-color: #f1f1f1;
}
/* Map */
#map {
position: absolute;
width: 100vw;
height: 100vh;
top: 0;
bottom: 0;
overflow: hidden;
}
/* Slider */
#slider {
position: absolute;
bottom: 50px;
left: 50%;
transform: translateX(-50%);
z-index: 1000;
width: 75%;
border: none;
height: 10px;
background-color: rgba(84, 94, 117, 60%);
box-shadow: none;
}
#slider .noUi-connect {
background-color: #28587B;
}
#slider .noUi-tooltip {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 21px;
background-color: #edf0f8;
border-radius: 10px;
border: none;
color: #545E75;
}
#slider .noUi-handle {
height: 30px;
width: 30px;
top: -10.5px;
right: -17px;
border-radius: 20px;
border-width: 5px;
border-color: #28587B;
background: #edf0f8;
box-shadow: none;
}
.slider-styled .noUi-handle::before,
.slider-styled .noUi-handle::after {
display: none;
}
/* Clusters */
.custom-cluster-icon {
background-image: url('static/cluster.png');
background-size: cover;
background-repeat: no-repeat;
background-color: #28587B;
border-radius: 20px;
color: #edf0f8;
text-align: center;
line-height: 41px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 25px;
font-weight: bold;
}
/* Marker Popups */
.popup-content {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 14px;
text-align: left;
}
.date-title {
font-size: 26px;
}
.image-style {
width: 100%;
}