Skip to content
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
10 changes: 2 additions & 8 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -134,14 +134,8 @@
<button id="darkModeToggle" class="dark-mode-btn" title="Toggle Dark Mode">
<i class="fas fa-moon"></i>
</button>
<a href="#" class="login-btn" id="openLoginModal">
<i class="fas fa-user"></i>
Login
</a>
<a href="#" class="login-btn" id="logoutBtn" style="display: none;">
<i class="fas fa-sign-out-alt"></i>
Logout
</a>


</div>
<div class="hamburger" id="hamburger">
<span></span>
Expand Down
2 changes: 1 addition & 1 deletion assets/css/about.css
Original file line number Diff line number Diff line change
Expand Up @@ -2392,7 +2392,7 @@ body.about-page.dark-mode li {
.social-links {
justify-content: center;
}
}


@media (max-width: 1024px) {
.footer-content {
Expand Down
44 changes: 0 additions & 44 deletions contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -173,47 +173,6 @@
color: #1e1e1e;
}

.login-btn {
background: linear-gradient(90deg, #3e2723, #6e463e, #3e2723);
color: white;
text-decoration: none;
padding: 0.7rem 1.5rem;
border-radius: 25px;
font-weight: 600;
display: flex;
align-items: center;
gap: 0.5rem;
box-shadow: 0 4px 15px #402a26;
}

.login-btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px #624844;
background: linear-gradient(90deg, #543732, #3d2b28, #341d19);
}

body.dark-mode .login-btn {
background: #e0e0e0;
color: #0d0d0d;
text-decoration: none;
padding: 0.7rem 1.5rem;
border-radius: 25px;
font-weight: 600;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 0.5rem;
box-shadow: 0 2px 2px #e0e0e0;
border: 2px solid transparent;
}

body.dark-mode .login-btn:hover {
transform: translateY(-3px);
background: #e0e0e0;
box-shadow: 0 2px 2px #e0e0e0;
}


.hamburger-icon {
display: none;
flex-direction: column;
Expand Down Expand Up @@ -954,9 +913,6 @@
<div class="nav-actions">
<button id="darkModeToggle" class="dark-mode-btn" title="Toggle Dark Mode"><i
class="fas fa-moon"></i></button>
<a href="#" class="login-btn" id="openLoginModal"><i class="fas fa-user"></i>Login</a>
<a href="#" class="login-btn" id="logoutBtn" style="display: none;"><i
class="fas fa-sign-out-alt"></i>Logout</a>
</div>
<div class="hamburger-icon" id="hamburger-icon">
<span class="bar"></span>
Expand Down
Loading