-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
63 lines (60 loc) · 2.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="A powerful code editor for web development that works completely offline with PWA support." />
<meta property="og:title" content="JSIDE" />
<meta
property="og:description"
content="A powerful code editor for web development that works completely offline with PWA support." />
<meta property="og:image" content="/icon-512.png" />
<meta name="theme-color" content="#21252b" />
<title>JSIDE</title>
<link rel="manifest" href="/manifest.webmanifest" />
<link rel="preload" href="/FiraCode-Regular.woff2" as="font" type="font/woff2" crossorigin />
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="stylesheet" href="src/base.css" />
</head>
<body>
<div id="app">
<div id="titlebar"></div>
<div id="editor"></div>
<div id="sidebar"></div>
<div id="panel"></div>
<div id="statusbar"></div>
</div>
<div class="splash">
<div class="app-icon">
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 50C0 10 10 0 50 0C90 0 100 10 100 50C100 90 90 100 50 100C10 100 0 90 0 50Z" fill="#667799" />
<path
id="arrow"
d="M25.7294 38.0917L14.9794 49.6778L25.7294 61.2639C26.3943 61.9806 26.7268 62.8167 26.7268 63.7722C26.7268 64.7278 26.3943 65.5639 25.7294 66.2806C25.0644 66.9972 24.2887 67.3556 23.4021 67.3556C22.5155 67.3556 21.7397 66.9972 21.0747 66.2806L7.99742 52.1861C7.33247 51.4694 7 50.6333 7 49.6778C7 48.7222 7.33247 47.8861 7.99742 47.1694L21.0747 33.075C21.7397 32.3583 22.5155 32 23.4021 32C24.2887 32 25.0644 32.3583 25.7294 33.075C26.3943 33.7917 26.7268 34.6278 26.7268 35.5833C26.7268 36.5389 26.3943 37.375 25.7294 38.0917Z"
fill="#242e42" />
<use href="#arrow" transform="rotate(180, 50, 49.6)" />
</svg>
</div>
<svg viewBox="0 0 38 38" stroke="#2196F3" class="loading-icon">
<g fill="none" fill-rule="evenodd">
<g transform="translate(1 1)" stroke-width="2">
<circle stroke-opacity=".5" cx="18" cy="18" r="18" />
<path d="M36 18c0-9.94-8.06-18-18-18">
<animateTransform
attributeName="transform"
type="rotate"
from="0 18 18"
to="360 18 18"
dur="1s"
repeatCount="indefinite" />
</path>
</g>
</g>
</svg>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>