-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
64 lines (56 loc) · 861 Bytes
/
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
html, body {
height: 100%;
margin: 0;
padding: 0;
width: 100%;
}
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
.map-wrapper {
position: relative;
height: 100%;
width: 100%;
}
#map {
position: absolute;
height: 100%;
width: 75%;
}
/*
* We position the sidebar to the right by using float and setting the width
* to 100% - the width of the map, in this case 100% - 75% = 25%
*/
.sidebar {
background: #eee;
float: right;
height: 100%;
padding: 10px;
width: 25%;
}
.sidebar-footer {
margin-top: 75px;
}
table {
border-collapse: collapse;
}
table, th, td {
border: 1px solid black;
text-align: center;
}
.slider {
margin-left:20px;
margin-right: 20px;
}
.noUi-tooltip {
background: pink;
}
.noUi-tooltip {
display: none;
}
.noUi-active .noUi-tooltip {
display: block;
}