-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
161 lines (160 loc) · 4.16 KB
/
index.html
File metadata and controls
161 lines (160 loc) · 4.16 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
156
157
158
159
160
161
<html>
<head>
<title>NYCCSC</title>
<style>
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 14px;
margin: 0px;
}
header {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 10px 15px;
border-bottom: 2px solid #5690ca;
}
header .left-side, header .right-side {
width: 50%;
float: left;
}
header:after {
content:'';
display:block;
clear: both;
}
.img-left {
float: left;
margin-right: 10px;
}
.clearfix {
clear: both;
}
form.search {
margin-top: 20px;
text-align:right;
height: 34px;
width: 100%;
}
form.search label.sr-only {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
form.search input {
width: 60%;
height: 34px;
font: inherit;
padding: 6px 12px;
background-color: white;
border: 1px solid #cccccc;
border-radius: 0px;
}
form.search button {
height: 34px;
font: inherit;
color: white;
background-color: #f6892e;
border-color: #f57b16;
border: 1px;
border-radius: 0px 4px 4px 0px;
padding: 6px 12px;
margin: 0px;
}
button.navbar {
float: right;
height: 34px;
background-color: #5690ca;
border: 1px solid transparent;
border-radius: 4px;
padding: 0px 8px;
margin-top: 20px;
margin-left: 20px;
font-size: 11pt;
}
.navbar-icon {
display: block;
background-color: white;
width: 1.2em;
height: 3px;
margin: 3px 0px;
border-radius: 1px;
}
.nav-dropdown {
position: absolute;
top: 100%;
z-index: 1000;
display: none;
left: auto;
right: 0;
float: left;
padding-left: 0px;
margin-right: 15px;
min-width: 160px;
background: rgba(57,119,180,0.95);
border: 1px solid transparent;
border-radius: 4px;
list-style: none;
font-size: 14px;
text-align: left;
-webkit-padding-start: 0px;
}
.nav-dropdown li a {
display: block;
padding: 3px 10px;
clear: both;
color: white;
background-color: transparent;
border-radius: 4px;
font-weight: normal;
text-decoration: none;
line-height: 1.5em;
white-space: nowrap;
cursor: auto;
}
.nav-dropdown li a:hover {
color: #5690ca;
background-color: white;
}
</style>
</head>
<body>
<header>
<div class="left-side">
<a href="/"><img src="data/images/logo-xs.png" class="img-left"></a>
<a href="/"><img src="data/images/nyccsc.png"></a>
<br class="clearfix">
</div>
<div class="right-side">
<button
class="navbar">
<span class="navbar-icon"></span>
<span class="navbar-icon"></span>
<span class="navbar-icon"></span>
</button>
<ul class="nav-dropdown">
<li><a href="/highlights/maps">Maps</a></li>
<li><a href="/highlights/data_products">Data Products</a></li>
<li><a href="/highlights/documents">Documents</a></li>
<li><hr></li>
<li><a href="/highlights/problems">Identify Problems</a></li>
<li><a href="/highlights/solutions">Investigate Solutions</a></li>
<li><a href="/highlights/actions">Take Action</a></li>
</ul>
<!-- search -->
<form class="search" action="/catalog" method="get">
<label for="q" class="sr-only">Find maps, data products, reports, articles...</label>
<input type="text" name="q" placeholder="Find maps, data products, reports, articles..." ><button type="submit" id="search"><span>Search</span></button>
</form>
</div>
</header>
<div id='root'></div>
</body>
<script src="/dataproduct/common.bundle.js" charset="utf-8"></script>
<script src="/dataproduct/loader.js" charset="utf-8"></script>
</html>