-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
151 lines (127 loc) · 1.94 KB
/
style.css
File metadata and controls
151 lines (127 loc) · 1.94 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
@import "normalize-css";
html,
body,
input,
button,
select,
textarea {
font: 16px/1.2 "Open Sans", "Helvetica Neue", Helvetica, arial, sans-serif;
color: #444;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
font-weight: 300;
}
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body,
html {
height: 100%;
overflow: hidden;
}
#page {
height: 100%;
}
#map {
width: 100%;
height: 100%;
}
header {
clear: both;
}
h1 {
text-align: center;
font-weight: 200;
color: #535350;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 15px;
margin-top: 25px;
}
.nav {
text-align: center;
margin: 26px 0px 0px 0px;
padding: 0px;
height: 40px;
}
.nav h4 {
display: inline-block;
}
.nav li {
display: inline-block;
}
.nav li a {
padding: 8px 10px 7px 10px;
background-color: #f4f4f1;
color: #535350;
border: 1px solid #f4f4f1;
border-radius: 3px;
text-decoration: none;
}
.nav li a:hover,
.nav li a:focus {
background-color: #f0f0ea;
color: #333;
border: 1px solid #f0f0ea;
}
.modal {
position: fixed;
top: 119px;
left: 0;
padding: 10px;
background-color: #fff;
border: 1px solid #fff;
border-radius: 3px;
z-index: 1000;
margin-left: 10px;
}
.modal a {
text-decoration: none;
color: #444;
}
.modal .location-title {
font-weight: 500;
margin-top: 10px;
}
.modal .text {
line-height: 1.6;
}
#close-modal {
font-weight: 300;
font-size: 25px;
float: right;
line-height: 1;
background-color: #efefef;
padding: 4px 12px 6px 12px;
border-radius: 3px;
}
.modal-inner {
overflow: scroll;
padding: 10px;
}
.modal-inner .image {
display: block;
}
.modal-inner .image img {
width: 100%;
height: auto;
}
.container {
width: 90%;
margin: 0px auto;
}
@media only screen and (min-width: 470px) {
h1 {
float: left;
}
.nav {
float: right;
}
.modal {
top: 76px;
}
}