Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature Enhancements #6

Merged
merged 2 commits into from
Feb 27, 2024
Merged
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
8 changes: 4 additions & 4 deletions StickyNotes-Frontend/html/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -190,13 +190,13 @@ <h2>Notable Features</h2>
<h2>Explore Our Other Apps</h2>
<ul id="other-apps" style="align-content: center; color: white; margin-bottom: 30px">
<li>
<p style="color: black; text-align: center">Embark on a culinary adventure with RecipeGenie, your go-to database for delightful recipes.</p>
<button onclick="window.location.href='https://hoangsonww.github.io/RecipeGenie-App/';" class="app-btn hover-effect">The RecipeGenie Database</button>
<p style="color: black; text-align: center">Take a deep dive into the world of movies and cinema with our MovieVerse Database.</p>
<button onclick="window.location.href='https://hoangsonww.github.io/The-MovieVerse-Database/';" class="app-btn hover-effect">The MovieVerse Database</button>
</li>

<li>
<p style="color: black; text-align: center">Take a deep dive into the world of movies and cinema!</p>
<button onclick="window.location.href='https://hoangsonww.github.io/The-MovieVerse-Database/';" class="app-btn hover-effect">The MovieVerse Database</button>
<p style="color: black; text-align: center">Embark on a culinary adventure with RecipeGenie, your go-to database for delightful recipes.</p>
<button onclick="window.location.href='https://hoangsonww.github.io/RecipeGenie-App/';" class="app-btn hover-effect">The RecipeGenie Database</button>
</li>

<li>
Expand Down
4 changes: 2 additions & 2 deletions StickyNotes-Frontend/js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ function addNewNote(title = "Untitled Note - Click here to give it a name!", tex
<button id="deletBtn" class="delete"><i class="fas fa-trash-alt"></i></button>
<input type="color" class="color-picker" value="${color}" style="border: 1px solid #000000;" title="Change color for this note">
</div>
<div class="note-title ${title ? "" : "untitled"}" contenteditable="false">${title}</div>
<div class="note-title ${title ? "" : "untitled"}" contenteditable="false" title="Add or change the title for this note">${title}</div>
<div class="main ${text ? "" : "hidden"}"></div>
<div class="note-content">
<div class="note-content" title="Add or change the content for this note">
<textarea placeholder="Add note content here..." style="font: inherit">${text}</textarea>
<div class="image-container ${image ? "" : "hidden"}">
<img src="${image}" class="note-image" />
Expand Down