Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
162 changes: 84 additions & 78 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,78 +1,84 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NOTESTACK</title>
<link rel="stylesheet" href="style.css">
</head>
<body>

<div class="app">

<!-- Sidebar -->
<aside class="sidebar">
<div>
<h2>πŸ“ NoteStack</h2>
<ul>
<li class="active" id="navNotes">πŸ“ All Notes</li>
<li id="navImportant">πŸ”΄ Important</li>
<li id="navWork">🟑 Work</li>
<li id="navPersonal">πŸ”΅ Personal</li>
<li id="navIdeas">🟒 Ideas</li>
<li id="navTrash">πŸ—‘οΈ Trash</li>
</ul>
</div>
<button id="darkModeBtn">πŸŒ™ Dark Mode</button>
</aside>

<!-- Main Section -->
<main class="main">

<header class="topbar">
<input type="text" id="searchInput" placeholder="Search notes...">
</header>

<!-- NOTES VIEW -->
<div id="notesView">
<section class="create-note">
<textarea id="noteInput" placeholder="Take a note..."></textarea>
<!-- Color Labels Section -->
<div class="label-selector">
<span class="label-title">Labels:</span>
<div class="label-options">
<label class="label-option">
<input type="checkbox" class="label-checkbox" value="Important">
<span class="label-dot important"></span> Important
</label>
<label class="label-option">
<input type="checkbox" class="label-checkbox" value="Work">
<span class="label-dot work"></span> Work
</label>
<label class="label-option">
<input type="checkbox" class="label-checkbox" value="Personal">
<span class="label-dot personal"></span> Personal
</label>
<label class="label-option">
<input type="checkbox" class="label-checkbox" value="Ideas">
<span class="label-dot ideas"></span> Ideas
</label>
</div>
</div>
<button id="addNoteBtn">Add Note</button>
</section>
<section id="notesGrid" class="notes-grid"></section>
</div>

<!-- TRASH VIEW (hidden by default) -->
<div id="trashView" style="display:none;">
<section id="trashGrid" class="notes-grid"></section>
</div>

</main>

</div>

<script src="script.js"></script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NOTESTACK</title>
<link rel="stylesheet" href="style.css">
</head>
<body>

<div class="app">

<!-- Sidebar -->
<aside class="sidebar">
<div>
<h2>πŸ“ NoteStack</h2>
<ul>
<li class="active" id="navNotes">πŸ“ All Notes</li>
<li id="navImportant">πŸ”΄ Important</li>
<li id="navWork">🟑 Work</li>
<li id="navPersonal">πŸ”΅ Personal</li>
<li id="navIdeas">🟒 Ideas</li>
<li id="navTrash">πŸ—‘οΈ Trash</li>
</ul>
</div>
<button id="darkModeBtn">πŸŒ™ Dark Mode</button>
</aside>

<!-- Main Section -->
<main class="main">

<header class="topbar">
<input type="text" id="searchInput" placeholder="Search notes...">
</header>

<!-- NOTES VIEW -->
<div id="notesView">
<section class="create-note">
<!-- Text Formatting Toolbar -->
<div class="format-toolbar">
<button id="boldBtn" class="format-btn" title="Bold"><b>B</b></button>
<button id="italicBtn" class="format-btn" title="Italic"><i>I</i></button>
<button id="ulBtn" class="format-btn" title="Bullet List">β€’</button>
</div>
<div id="noteInput" contenteditable="true" data-placeholder="Take a note..."></div>
<!-- Color Labels Section -->
<div class="label-selector">
<span class="label-title">Labels:</span>
<div class="label-options">
<label class="label-option">
<input type="checkbox" class="label-checkbox" value="Important">
<span class="label-dot important"></span> Important
</label>
<label class="label-option">
<input type="checkbox" class="label-checkbox" value="Work">
<span class="label-dot work"></span> Work
</label>
<label class="label-option">
<input type="checkbox" class="label-checkbox" value="Personal">
<span class="label-dot personal"></span> Personal
</label>
<label class="label-option">
<input type="checkbox" class="label-checkbox" value="Ideas">
<span class="label-dot ideas"></span> Ideas
</label>
</div>
</div>
<button id="addNoteBtn">Add Note</button>
</section>
<section id="notesGrid" class="notes-grid"></section>
</div>

<!-- TRASH VIEW (hidden by default) -->
<div id="trashView" style="display:none;">
<section id="trashGrid" class="notes-grid"></section>
</div>

</main>

</div>

<script src="script.js"></script>
</body>
</html>
Loading