-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (54 loc) · 1.91 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Aqua UI</title>
<link href="./favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
<link rel="apple-touch-icon" href="./apple-touch-icon.png" />
<link rel="stylesheet" type="text/css" href="./main.css">
<script src="//code.jquery.com/jquery-1.9.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".button").click(function(){
$("#block").toggleClass("collapsed");
});
});
</script>
</head>
<body>
<div id="block" class="asdf collapsed">
<div class="name">
<label for="export" >Export As:</label>
<input type="text" name="export" value="index.webarchive">
</div>
<div class="path">
<label for="path" >Where:</label>
<input type="text" name="path" value="Desktop">
</div>
<div class="brr">
<label for="format">Format:</label>
<div class="dropdown">
<select name="format" id="dropdownlist" class="datdropdownlist">
<option value="Saves only the source text of this page." >Page Source</option>
<option value="Saves text, images, and other content of this page." selected>Web Archive</option>
</select>
</div>
<div id="descr">Saves text, images, and other content of this page.</div>
<script type="text/javascript">
$('#dropdownlist').change(function(){
x = $(this).val();
$('#descr').text(x);
})
</script>
</div>
<div class="buttons">
<a href="https://github.com/chschtsch/aqua-ui" class="button zqwerty"><div>Fork on GitHub</div></a>
<a href="#" class="button zqwerty"><div>Cancel</div></a>
<a href="#" class="button aqwerty"><div class="title">Save</div><div class="one"></div><div class="two"></div></a>
</div>
</div>
<div id="info" class="info">
<a href="#" class="button save">Save As... <span>⌘S</span></a>
</div>
</body>
</html>