-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (62 loc) · 1.6 KB
/
index.html
File metadata and controls
63 lines (62 loc) · 1.6 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
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" />
<link rel="stylesheet" href="/src/styles.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Slate</title>
<script type="module" src="/src/main.ts" defer></script>
</head>
<body>
<main class="app">
<div class="drag-strip">
<div class="brand">
<img
src="/src/assets/text-icon.svg"
alt="Slate"
class="brand-img"
aria-hidden="true"
/>
</div>
<div class="window-actions">
<button
class="icon-btn"
id="always-on-top"
type="button"
aria-pressed="true"
aria-label="Toggle always on top"
>
<img
src="/src/assets/pin.svg"
alt=""
class="icon-img"
aria-hidden="true"
/>
<img
src="/src/assets/pin-off.svg"
alt=""
class="icon-img"
aria-hidden="true"
/>
</button>
<button
class="icon-btn close-btn"
id="close-app"
type="button"
aria-label="Close"
>
<svg viewBox="0 0 24 24" aria-hidden="true" focusable="false">
<path d="M18 6 6 18M6 6l12 12" />
</svg>
</button>
</div>
</div>
<textarea
id="note"
class="note"
placeholder="Start typing..."
spellcheck="true"
></textarea>
</main>
</body>
</html>