-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (28 loc) · 1.08 KB
/
index.html
File metadata and controls
37 lines (28 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
<script src="http://underscorejs.org/underscore-min.js"></script>
<script src="http://backbonejs.org/backbone-min.js"></script>
<script src="app.js"></script>
<script src="js/jszip/jszip.js"></script>
<script src="js/jszip/jszip-deflate.js"></script>
<link href="css/smoothness/jquery-ui-1.10.2.custom.css" rel="stylesheet">
<style>
* { font-family:arial; }
body { margin:0;padding:0; }
</style>
</head>
<body>
<div id="app">
<div id="dropbox" style="display:none;position:absolute;width:100%;height:100%;left:0;top:0;background:#CCC;">
<div style="position:absolute;width:100px;height:100px;margin:0 -50px 0 -50px;top:50%;left:50%;text-align:center;">Drop</div>
</div>
<div id="screenshot-list" style="float:left;"></div>
<div id="template-list" style="float:left;"></div>
<div id="workspace" style="float:right;"></div>
<button type="button" id="download">Download</button>
</div>
</body>
</html>