-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (69 loc) · 1.32 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
.scroll {
overflow-y: scroll;
overflow-x: scroll
}
.nox_scroll {
overflow-y: scroll;
overflow-x: hidden
}
.blocklabel {
display: block
}
.divcenter {
margin: auto;
width: 100%;
height: 90%;
border: 3px solid #73AD21;
}
.padobenunten {
padding-top: 10px;
padding-bottom: 10px;;
}
.containerpadding{
padding: 15 px;
}
.polyline_strich{
stroke-width:3;
stroke-dasharray: 10,10;
}
.polyline_normal{
stroke-width: 3;
}
.legend{
padding: 6px 8px;
font: 14px/16px Arial, Helvetica, sans-serif;
background: white;
background: rgba(255,255,255,0.8);
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
line-height: 18px;
}
.legend i {
width: 16px;
height: 16px;
float: left;
margin-right: 8px;
opacity: 0.7;
}
.ueberblenden{
z-index:10000
}
.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
/* Position the tooltip */
position: absolute;
z-index: 2000;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}