-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
108 lines (91 loc) · 1.52 KB
/
main.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
#map {
position:absolute;
top:0px;
bottom:0px;
left: 0px;
right: 0px;
margin:5px;
}
#controls {
float: right;
position: relative;
right: -10px;
opacity: 0.7;
background: grey;
padding: 5px;
border-radius: 15px;
text-align: center;
width: 12em;
}
#controls > div {
margin: 3px;
}
#controls .inputs {
width: 100%;
border-radius: 5px;
}
#findings {
text-align: left;
padding: 5px;
margin: 5px;
max-height: 10em;
overflow: overlay;
}
#reset_findings {
border-radius: 12px;
background-color: red;
border-color: darkred;
}
.symbol {
height: 1.3em;
width: 1.3em;
}
.legend .symbol {
float: right;
}
.cluster {
border: 2px solid;
border-radius: 100px;
text-align: center;
font-size: 18;
padding: 3px;
}
.vokues {
background-color: rgba(23,165,165,0.6);
}
.stressfaktoren {
background-color: rgba(100,18,07,0.6);
}
.events {
background-color: rgba(165,23,165,0.6);
}
.legend.active {
border: 1px red solid;
}
.legend {
border-radius: 5px;
border: 1px grey solid;
}
.leaflet-popup-content-wrapper {
background-color: lightgrey;
border: 3px darkgrey dashed;
border-radius: 30px;
}
.marker-description {
max-height: 300px;
overflow-y: overlay;
}
.marker-title {
text-align: center;
}
.vokue i {
color: rgb(23,165,165);
}
.event i {
color: rgb(165,23,165);
}
.marker-description .address {
font-size: 0.8em;
color:#696969;
text-align: right;
}