-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.html
181 lines (171 loc) · 3.85 KB
/
search.html
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!DOCTYPE html>
<meta charset="utf-8">
<style>
@import "css/bootstrap.min.css";
@import "assets/css/styles.css";
@import "assets/css/wide.css";
nav{
z-index:400001;
}
body {
overflow-x:hidden;
}
div#search-field{
height: 50px;
display: inline-block;
}
form#search-form{
width: 100%;
height: 40px;
margin: 25px 100px 0 100px;
padding: 0 auto;
display: block;
}
form#search-form div.selectboxes select {
display: inline-block;
}
div#term-heading {
display: block;
margin-bottom: 20px;
}
div#search-result {
margin: 25px 100px 0 100px;
left: 10px;
width: 100%;
display: inline-block;
clear: both;
}
div#adv-search input[type=checkbox] {
margin-right: 3px;
}
div#adv-search label {
margin-right: 20px;
}
ul#term-tabs {
display: inline-block;
width: 35%;
float: left;
position: relative;
padding: 0;
margin: 0;
}
ul#term-tabs li {
list-style: none;
display: block;
margin: 0;
padding: 2px;
}
ul#term-tabs li a {
text-decoration: none;
color: #1a1a1a;
font-weight: bold;
font-size: 1em;
}
ul#term-tabs li.active{
background: #aaa;
}
ul#term-tabs li:hover {
background: #ccc;
}
div#term-defs {
display: inline-block;
margin-right: 20%;
padding: 1em;
border: 1px solid #aaa;
height:500px;
overflow-y: scroll;
}
div#term-defs .citation {
font-size: 0.85em;
margin: 10px 0 0;
font-style: italic;
border-top: 1px dotted #aaa;
border-bottom: 1px solid #aaa;
padding: 0 1em 2em 0;
}
div.showhide {
width: 100%;
clear: both;
float: right;
}
div.showhide.hiding {
background: #eee;
border-bottom: 1px solid #aaa;
}
div.showhide .heading {
float: left;
}
div.showhide .link {
float: right;
}
div.card {
clear: both;
}
div#deeplink {
width: 70%;
font-weight: bold;
margin-top: 20px
}
span#termname{
font-weight: bold;
}
.country {
fill: #ccc;
stroke: #fff;
stroke-width: .5px;
stroke-linejoin: round;
}
.graticule {
fill: none;
stroke: #000;
stroke-opacity: .3;
stroke-width: .5px;
}
.graticule.outline {
stroke: #333;
stroke-opacity: 1;
stroke-width: 1.5px;
}
</style>
<script src="js/jquery-2.1.1.min.js"></script>
<script src="js/definitions.js"></script>
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="assets/js/modernizr-latest.js"></script>
</head>
<body>
<div id="page-container">
<div id="search-field">
<form id="search-form">
<h3 style="display: inline;">Search:</h3>
<input type="text" placeholder="Enter your search term here" id="q" name="q" list="terms">
<br />
<h4 style="display: inline;">Advanced Filters:</h4>
<div id="adv-search">
<div class="selectboxes">
<select id="Source"><option value="any">Any Source</select>
<select id="Year"><option value="any">Any Year</select>
</div>
<div class="checkboxes">
<label><input type="checkbox" name="P5" value="1">P5</label>
<label><input type="checkbox" name="UNGGE4" value="1">UNGGE4</label>
<label><input type="checkbox" name="OSCE" value="1">OSCE Member States</label>
<label><input type="checkbox" name="OtherState" value="1">Other State</label>
<label><input type="checkbox" name="IGO" value="1">IGO</label>
<label><input type="checkbox" name="OtherSource" value="1">Other Source</label>
<label><input type="checkbox" name="OSCEOfficial" value="1">OSCE Official Submission</label>
</div>
</div>
</div>
</form>
<div id="search-result"></div>
<!-- <div id="word-cloud"></div>
<div id="map"> </div> -->
</div>
</div>
</div>
<div class="scripted_styling"></div>
<script src="assets/js/jquery.widowFix-1.3.2.min.js"></script>
<script src="assets/js/components/nav.js"></script>
<script src="assets/compiled/js/core.js"></script>
</body>
</html>