-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (93 loc) · 3.1 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
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
<html>
<head>
<title>Protofit</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="msapplication-tap-highlight" content="no" />
<link rel='stylesheet' type="text/css" href='css/style.css'>
</head>
<body>
<div id="app" class="loading">
<div id="panel">
<div id="actions">
<section id="layouts">
<div>
<h3>Choose a Layout</h3>
<ul id="layout-list"></ul>
</div>
<button id="layout-next-btn" class="btn next">Next</button>
</section>
<section id="editor" class="no-selection">
<button id="editor-back-btn" class="btn back">Start Over</button>
<hr />
<div>
<div class="replace">
<div class="grow">
<div class="headers">
<h3>Replace With…</h3>
<span>Click on a tile to select it.</span>
</div>
<ul id="editor-list">
</ul>
<button id="editor-done-btn" class="btn deselect">Deselect All</button>
</div>
<button id="merge-btn" class="btn merge">Merge</button>
</div>
<div class="style">
<h3>Choose a Style</h3>
<ul id="style-list">
<li>Tech</li>
<li>Creative</li>
<li>Finance</li>
<li>Law</li>
<li>Corporate</li>
</ul>
</div>
</div>
<hr />
<button id="measure-btn" class="btn measure">Measure</button>
<div class="two-up">
<button id="model-view-btn" class="btn model">View in 3D</button>
<button id="editor-share-btn" class="btn share">Share…</button>
</div>
</section>
</div>
</div>
<div id="protofit">
<div id="svg-container"></div>
<div id="project-north">
<div id="north-arrow"></div>
<span>N</span>
</div>
<div id="loading" class="spin"></div>
<aside>
<div>
<div id="project-title"></div>
<div id="project-address"></div>
<hr />
<div id="project-logo"></div>
<hr class="logo-hr" />
</div>
<div id="rsf">
<div>
<span>RSF</span>
<input id="rsf-input" type="number" />
</div>
<hr />
</div>
<div id="info"></div>
<hr />
<div id="measurement">
</div>
<div class="grow"></div>
<div id="powered-by">
<hr />
<span class="uppercase">Powered by </span><span class="logotype">Floored</span>
</div>
</aside>
</div>
</div>
<script src="js/protofit.js"></script>
<script src="js/fontdeck.js"></script>
</body>
</html>