-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (84 loc) · 2.6 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<title>New Tab</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link rel="stylesheet" type="text/css" href="./assets/styles/index.css" />
<link rel="stylesheet" type="text/css" href="./assets/styles/date.css" />
<link
rel="stylesheet"
type="text/css"
href="./assets/styles/checklist.css"
/>
<link
rel="stylesheet"
type="text/css"
href="./assets/styles/chronograph.css"
/>
<link rel="stylesheet" type="text/css" href="./assets/styles/menu.css" />
<link
rel="stylesheet"
type="text/css"
href="./assets/styles/miscellaneous.css"
/>
</head>
<body style="opacity: 0; transition: opacity 500ms var(--ease)">
<header>
<nav>
<button class="menu-toggle">
<h2>
Menu
</h2>
</button>
<div class="menu-container">
<h3>Get $h%t Done!</h3>
<ul class="menu"></ul>
<div class="settings">
<button class="header" tabindex="-1"><span>Settings</span></button>
<div class="settings-menu">
<p>
Hello, hope you're enjoying this little project! Your previous 7
days will be saved in the browser.
</p>
<ul>
<li><span class="highlight">enter</span> to add a new item</li>
<li>
<span class="highlight">shift + enter</span> to add a new line
</li>
<li>
remove an item by deleting its content
</li>
</ul>
<div class="actions">
<button class="dark-mode" tabindex="-1">Dark Mode</button>
<button class="reset" tabindex="-1">Reset Data</button>
</div>
</div>
</div>
</div>
</nav>
</header>
<main>
<h1 class="hidden">Get $h*t Done! Chrome Extension</h1>
<ul class="checklist"></ul>
<div class="date">
<ul class="chronograph">
<li tabindex="0">
<span class="hover-text">EOW</span>
<span id="week-remaining"></span>
</li>
<li tabindex="0">
<span class="hover-text">EOD</span>
<span id="today-remaining"></span>
</li>
</ul>
<span class="day"></span>
</div>
</main>
<script src="./assets/js/index.js" type="module"></script>
<script src="/node_modules/focus-visible/dist/focus-visible.min.js"></script>
</body>
</html>