blob: 4ef011880f3ca339682a2a75e93dd331eadf5131 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<title>dump.fm image search</title>
$head()$
<style>
img { max-width: 400px; max-height: 400px;} /* FIX THIS */
html,body,img,div{margin:0; border:0; padding:0}
body { overflow: visible;}
h1 { display:inline-block; margin: 20px; font-size: 30px;}
fieldset { display: inline }
p { margin-left: 20px; display: inline-block; }
</style>
<script>
jQuery(document).ready(Search.initFullpage)
</script>
</head>
<body>
<center>search dumps: <input type="text" name="search-query" id="search-query" /></center><br><br>
<center><div id="search-message"></div><br><br></center>
<div id="fullpage-search-results">
<div id="search-results-images"></div>
</div>
</body>
</html>
|