-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathindex.html
38 lines (38 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSSX playground</title>
<link rel="stylesheet" href="./vendor/codemirror/codemirror.css">
<link rel="stylesheet" href="./vendor/codemirror/addon/fold/foldgutter.css" />
<link rel="stylesheet" type="text/css" href="./styles.css" />
</head>
<body>
<div class="container">
<div class="left js-code-editor"></div>
<div class="right">
<div class="output js-output-editor"></div>
<div class="nav-output js-nav-output">
<a href="javascript: void(0);" class="js-view-ast"></a>
<a href="javascript: void(0);" class="js-view-js"></a>
<a href="javascript: void(0);" class="js-minify"></a>
</div>
</div>
</div>
<div class="message js-message"></div>
<script src="../../packages/cssx/lib/cssx.js"></script>
<script src="../../packages/cssx-transpiler/lib/cssx-transpiler.js"></script>
<script src="./vendor/codemirror/codemirror.js"></script>
<script src="./vendor/codemirror/javascript.js"></script>
<script src="./vendor/codemirror/addon/fold/foldcode.js"></script>
<script src="./vendor/codemirror/addon/fold/foldgutter.js"></script>
<script src="./vendor/codemirror/addon/fold/brace-fold.js"></script>
<script src="./vendor/codemirror/addon/fold/xml-fold.js"></script>
<script src="./vendor/codemirror/addon/fold/markdown-fold.js"></script>
<script src="./vendor/codemirror/addon/fold/comment-fold.js"></script>
<script src="./polyfills/reduce.js"></script>
<script src="./polyfills/map.js"></script>
<script src="./default.js"></script>
<script src="./script.js"></script>
</body>
</html>