-
Notifications
You must be signed in to change notification settings - Fork 4
/
mega-structure.html
90 lines (65 loc) · 2.57 KB
/
mega-structure.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>mega-structure</title>
<!-- jQuery -->
<script type="text/javascript" src="node_modules/jquery/dist/jquery.min.js"></script>
<!-- Bootstrap CSS layout -->
<link rel="stylesheet" type="text/css" href="node_modules/bootstrap/dist/css/bootstrap.css" />
<!-- Codemirror -->
<link rel="stylesheet" type="text/css" href="node_modules/codemirror/lib/codemirror.css">
<link rel="stylesheet" type="text/css" href="node_modules/codemirror/theme/twilight.css">
<style>
.title {
font-family: Consolas, monospace;
font-size: x-small;
background: white;
border: 0px;
}
.CodeMirror {
border: 1px solid gray;
}
.vcenter {
display: inline-block;
vertical-align: middle;
float: none;
}
</style>
</head>
<body>
<div class="container-fluid">
<div id="header" class="row">
<form class="col-lg-4">
<div class="form-group"></div>
<div class="form-group">
<button type="button" class="btn btn-success" id="synthBtn">Synthesize !</button>
<button type="button" class="btn" id="resetViewportBtn">Reset viewport</button>
<button type="button" class="btn" id="toggleTurntableBtn">Toggle turntable</button>
</div>
<div class="form-group">
<label for="examples">Example</label>
<select id="examples"></select>
</div>
</form>
<pre class="title col-lg-8"> _ _
_ __ ___ ___ __ _ __ _ ___| |_ _ __ _ _ ___| |_ _ _ _ __ ___
| '_ ` _ \ / _ \/ _` |/ _` |_____/ __| __| '__| | | |/ __| __| | | | '__/ _ \
| | | | | | __/ (_| | (_| |_____\__ \ |_| | | |_| | (__| |_| |_| | | | __/
|_| |_| |_|\___|\__, |\__,_| |___/\__|_| \__,_|\___|\__|\__,_|_| \___| beta
(c) 2016 SSRB |___/ </pre>
</div>
<div class="row">
<div class="col-lg-4" id="structure-code"></div>
<div class="col-lg-8" id="structure-view"></div>
</div>
</div>
<a href="https://github.com/ssrb/mega-structure">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/652c5b9acfaddf3a9c326fa6bde407b87f7be0f4/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6f72616e67655f6666373630302e706e67"
alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png">
</a>
<script src="bundle.js"></script>
</body>
</html>