-
Notifications
You must be signed in to change notification settings - Fork 0
/
styletfl.css
88 lines (76 loc) · 1.52 KB
/
styletfl.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
/* General Styles */
* {
margin: 0;
padding: 0;
font-family: "Poppins", sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #151515;
}
/* Center align headers and project overview */
h1, h2, p {
text-align: center;
margin-bottom: 20px;
color: #999;
}
/* Style for the map container */
#visualization {
height: 400px;
width: 100%;
margin: 20px auto;
border: 2px solid #ccc;
}
/* Progress Log */
p {
font-size: 16px;
line-height: 1.5;
}
/* Add hover effect for Leaflet markers
.marker-icon {
transition: transform 0.3s ease;
}
.marker-icon:hover {
transform: scale(1.2);
}
/* New Slider Styles */
div {
position: absolute;
}
#rangeValue {
position: relative;
display: block;
text-align: center;
font-size: 6em;
color: #999;
font-weight: 400;
}
.range {
width: 400px;
height: 15px;
-webkit-appearance: none;
background: #111;
outline: none;
border-radius: 15px;
overflow: hidden;
box-shadow: inset 0 0 5px rgba(0, 0, 0, 1);
}
.range::-webkit-slider-thumb {
-webkit-appearance: none;
width: 15px;
height: 15px;
border-radius: 50%;
background: #00fd0a;
cursor: pointer;
border: 4px solid #333;
box-shadow: -407px 0 0 400px #00fd0a;
}
/* Remove bullet points from unordered lists */
ul {
list-style-type: none;
padding-left: 0;
}