-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
155 lines (148 loc) · 3.13 KB
/
Copy pathstyle.css
File metadata and controls
155 lines (148 loc) · 3.13 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
body {
margin:0;
padding:0;
font-family:'Raleway';
}
/*map ID will take up the whole screen*/
#map {
position:absolute;
top:0;
bottom:0;
width:100%;
}
/*the lines for the Title Box*/
#titleBoxWords {
border-bottom:3px #2A2A2A solid;
border-top:3px #2A2A2A solid;
}
/*Set the title box to be 33% of the screen*/
#titleBox {
position:relative;
top:15;
width:33%;
background-color:#FFF;
margin:25px;
padding:5px 0 5px 0;
}
/*Styling for the website title*/
#titleBox h1 {
text-align:center;
color:#B90909;
margin:15px 0px 8px 0px;
}
/*Styling for the description of website*/
#titleBox h5 {
text-align:center;
color:#2A2A2A;
font-style: italic;
margin:0px 0px 15px 0px;
}
/*line in the Filter box section*/
#filterBoxWords {
border-top:3px #2A2A2A solid;
}
/*Styling for the title 'Filters Options'*/
#filterBoxWords h2 {
margin:15px 5px 25px 5px;
padding-left: 30px;
color:#2A2A2A;
}
/*Styling for the Filters div on the bottom of the screen*/
#filterBox {
position:absolute;
width:100%;
bottom:0%;
background-color:#FFF;
margin-top: 10px;
padding:5px 0 5px 0;
}
/*Filter options margin*/
.filterOptions {
margin-top: 20px;
margin-bottom: 40px;
text-align: center;
}
/*The button for the filter options*/
.overlaybutton {
display: inline;
position: relative;
text-align: center;
padding: 10px 45px 10px 45px;
cursor: pointer;
margin: 0px 60px 20px 30px;
background-color:#EDEDED;
border-bottom: 3px rgba(211, 211, 211, 0.5) solid;
border-right: 3px rgba(211, 211, 211, 0.5) solid;
}
/*change the background on the hover over and on focus*/
.overlaybutton:hover, .overlaybutton:focus {
background-color: #D5D5D5;
color: white;
border-bottom: 3px rgba(211, 211, 211, 0.9) solid;
border-right: 3px rgba(211, 211, 211, 0.9) solid;
}
.overlay {
top: 0%;
left: 0%;
height: 100%;
width: 0;
position: fixed;
z-index: 1;
background-color: rgba(0,0,0, 0.9);
overflow-x: hidden;
transition: 0.3s;
}
/* Position the content inside the overlay */
.overlayContentType, .overlayContentLocation {
position: relative;
top: 10%;
width: 100%;
text-align: center;
margin-top: 30px;
}
.overlayContentDate {
position: relative;
top: 15%;
width: 100%;
text-align: center;
}
/* The navigation links inside the overlay */
.overlay a {
padding: 8px;
text-decoration: none;
font-size: 36px;
color: #818181;
display: block;
transition: 0.1s;
font-size: 23px;
}
/* The navigation links inside the date overlay */
.overlay .overlayContentDate a {
padding: 8px;
text-decoration: none;
font-size: 20px;
color: #818181;
display: block;
transition: 0.3s;
}
/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
color: #f1f1f1;
}
/* Position the close button (top right corner) */
.overlay .closebtn {
position: absolute;
top: 20px;
right: 45px;
font-size: 60px;
}
/*get ride of radio button*/
input[type=radio]:not(old){
width : 0px;
margin : 0;
padding : 0;
opacity : 0;
}
div .leaflet-popup-tip-container {
margin-right: 130px;
}