-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (72 loc) · 2.35 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
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Darky Notes</title>
<link rel="stylesheet" href="./css/base.css">
<link rel="stylesheet" href="./css/home.css">
<link rel="stylesheet" href="./css/note.css">
<link rel="stylesheet" href="./css/components/buttons.css">
<link rel="manifest" href="./manifest.json">
<link rel="shortcut icon" href="./assets/favicon.png" type="image/png">
</head>
<body>
<noscript>
<style>
#app {
display: none;
}
</style>
<h1>Darky Notes won't work without JavaScript. Please, enable it.</h1>
</noscript>
<main id="app">
<div class="container">
<section class="home-container">
<header class="main_hero">
<h1 class="no-select">Your Notes</h1>
<p class="main_hero-desc">
There's empty...
</p>
<div class="notes-container" id="home_notes-container"></div>
</header>
<footer class="home-container_footer">
<button id="home_addNote-btn" class="btn btn-void">
<i class="material-icons">add</i>
Add note
</button>
<button id="home_removeAll-btn" class="btn btn-void" hidden>
<i class="material-icons">playlist_remove</i>
Remove all
</button>
</footer>
</section>
<section class="addnote-container" hidden>
<h1>Add Note</h1>
<p id="infobox" hidden>Too long text!</p>
<textarea class="addnote-container_textbox"
id="note_textbox"
placeholder="Type here..."
autocomplete="off"
autofocus="true"
maxlength="60"
required></textarea>
<div class="btn-group">
<button id="addNote-btn" class="btn btn-void">
<i class="material-icons">done</i>
Done
</button>
<button id="cancelNote-btn" class="btn btn-void">
<i class="material-icons btn-icon">cancel</i>
Cancel
</button>
</div>
</section>
</div>
</main>
<a href="https://github.com/marshallovski/darkynotes" class="no-select">Darky Notes</a>
<script src="./js/home.js"></script>
<script src="./js/note.js"></script>
</body>
</html>