diff --git a/notes/index.html b/notes/index.html new file mode 100644 index 0000000..9deb6eb --- /dev/null +++ b/notes/index.html @@ -0,0 +1,26 @@ + + + + + + Notes + + + +
+ + +
+
+
+
+
+
+ +

Click on "New Note" and click on the new note to open it!

+
+
+ + + + \ No newline at end of file diff --git a/notes/index.js b/notes/index.js new file mode 100644 index 0000000..fd784e0 --- /dev/null +++ b/notes/index.js @@ -0,0 +1,33 @@ +const newNoteButton = document.getElementById('new-note'); +const notes = document.querySelector('div[id="notes"]'); +const editor = document.getElementById('editor-area'); +const left = document.getElementById('left'); +const editingTop = document.getElementById('editing'); + +let count = 0; +let noteOpen = false; +let currentNote = null; + +newNoteButton.addEventListener('click', () => { + const newNote = document.createElement('button'); + count++; + newNote.className = "new-note"; + newNote.id = count; + + let currentTime = `${new Date().getDate()}/${new Date().getMonth() + 1}/${new Date().getFullYear()}, ${new Date().getHours()}:${new Date().getMinutes()}`; + newNote.innerHTML = `#${count} ${currentTime}`; + + notes.appendChild(newNote); + + newNote.addEventListener('click', () => { + noteOpen = true; + if (currentNote) { + currentNote.style.backgroundColor = ''; + } + currentNote = newNote; + document.querySelector('h1[class="hint"]').innerHTML = `Editing #${currentNote.id}`; + editor.style.display = "flex"; + currentNote.style.backgroundColor = '#404040'; + editingTop.innerHTML = `Editing ${newNote.innerHTML}`; + }); +}); diff --git a/notes/style.css b/notes/style.css new file mode 100644 index 0000000..61cb0e2 --- /dev/null +++ b/notes/style.css @@ -0,0 +1,96 @@ +@import url(/global.css); + +textarea::selection { + background: Highlight; + color: HighlightText; +} + +div.top { + top: 0; + width: 100%; + position: fixed; + background-color: #242424dd; + backdrop-filter: blur(5px); + user-select: none; + z-index: 9999; +} + +div.top div#editing { + width: max-content; +} + +div.top > button { + padding: 8px; + margin: 10px 4px 10px 10px; + cursor: pointer; + background-color: #242424; + color: white; + border: 2px solid #242424; + border-radius: 5px; +} + +div.top > button:not(:nth-child(1)) { + margin: 10px 4px 10px 4px; +} + +div.top > button:hover { + cursor: pointer; + background-color: rgb(42, 42, 42); + color: white; + border: 2px solid #282828; +} + +div.left { + left: 0; + top: 55px; + position: absolute; + background-color: #242424; + height: 100%; + max-width: 35%; + z-index: 2; +} + +#notes { + display: grid; + scroll-behavior: smooth; +} + +#notes > button { + cursor: pointer; + user-select: none; + padding: 4px 4px; + margin: 4px 7px; + background-color: #303030; + color: white; + border: 2px solid transparent; + text-align: left; + border-radius: 5px; +} + +button[class="new-note open"] { + background-color: #353535; +} + +#notes > button:hover { + background-color: #343434; +} + +#editor-area { + width: calc(100% - 190px); + height: 100%; + position: absolute; + top: 55px; + left: 190px; + background-color: #2a2a2a; + color: white; + border: none; + outline: none; + overflow-wrap: break-word; + word-break: break-word; + white-space: pre-wrap; + overflow: hidden; + padding: 10px; + box-sizing: border-box; + resize: none; + display: none; +} \ No newline at end of file