forked from Ruff9/drafter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (38 loc) · 1.19 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<link rel='stylesheet' href='reset.css'/>
<link rel='stylesheet' href='main.css'/>
</head>
<body>
<div id='wrapper'>
<section id='text-container'>
<div id='text' contenteditable='true' spellcheck='false'></div>
<div class='controls-container'>
<div id='active-draft'></div>
<div class='controls'>
<span id='new-draft-button' class='control-button'>new draft</span>
<span id='clear-button' class='control-button'>clear</span>
</div>
</div>
</section>
<section id='sidebar'>
<div class='thumbnails-container'></div>
<div class='sidebar-controls-container'>
<div class='sidebar-controls'>
<form>
<div class='checkbox-container'>
<label for='selectDarkTheme' class='checkbox-label'>Dark mode
<input type='checkbox' id='selectDarkTheme'>
<span></span>
</label>
</div>
</form>
</div>
</div>
</section>
</div>
<script src='main.js' type='module'></script>
</body>
</html>