-
Notifications
You must be signed in to change notification settings - Fork 22
/
style.css
110 lines (106 loc) · 2.04 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
body {
margin: 0;
padding: 0;
font-family: 'Helvetica Neue', 'Arial', 'sans-serif';
line-height: 25px;
}
#map { position:absolute; top:0; bottom:0; width:100%; background-color: #202222; }
#map1 { position:absolute; top:0; bottom:0; left:0; right:50%; background-color: #202222; }
#map2 { position:absolute; top:0; bottom:0; left:50%; right:0; background-color: #202222; }
#toggle {
position: absolute;
background-image: url('swipe.png');
background-color: rgba(255, 255, 255, 0.5);
z-index: 20000;
top: 10px;
right: 10px;
width: 52px;
height: 26px;
cursor: pointer;
border-radius: 3px;
}
#range {
top: 50%;
width: 100%;
position: absolute;
}
input[type=range] {
-webkit-appearance: none;
}
input[type=range]:focus {
outline: none;
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
border: 1px solid rgba(255, 255, 255, 0.5);
height: 60px;
width: 60px;
border-radius: 30px;
background: rgba(255, 255, 255, 0.5);
cursor: pointer;
margin-top: -14px;
box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]::-webkit-slider-runnable-track {
width: 100%;
height: 0;
}
h2 {
font-size: 35px;
padding: 0 0 30px 0;
border-bottom: 1px solid #999;
margin-left: -100px;
padding-left: 100px;
margin-right: -100px;
padding-right: 100px;
box-shadow: 0px 3px 3px #f5f5f5;
}
h3 {
font-size: 25px;
}
a {
text-decoration: none;
color: #084e9d;
}
.bold {
font-weight: bold;
}
.leaflet-bar, .leaflet-control-layers, .leaflet-bar a:hover {
background-color: rgba(255, 255, 255, 0.5);
}
#help {
margin: 100px;
display: none;
}
dd {
margin: 0;
padding: 0 0 20px 0;
}
.button {
border-radius: 5px;
background: #084e9d;
padding: 5px 15px;
}
.button:hover {
background: #0a66ce;
}
a.button {
color: #fff;
}
#forkme {
float: right;
}
@media (max-width: 700px) {
#help {
margin: 100px 10px 10px 10px;
}
h2 {
margin-left: -10px;
padding-left: 10px;
margin-right: -10px;
padding-right: 10px;
}
#forkme {
display: none;
}
}