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
3 changes: 3 additions & 0 deletions buy.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
background: linear-gradient(135deg, #232526 0%, #414345 100%), url('./assets/images/car-bg.jpg') center/cover no-repeat;
color: #fff;
}
body.dark-mode .navbar {
background-color: #4e7fb4;
}

.buy-container {
max-width: 1400px;
Expand Down
4 changes: 2 additions & 2 deletions featured-car.html
Original file line number Diff line number Diff line change
Expand Up @@ -590,11 +590,11 @@
<div class="container">
<nav class="nav">
<a href="/src/index.html" class="logo" aria-label="VehiGo home">
<img src="./assets/images/vehigologo.png" alt="VehiGo logo" />
<img src="../assets/images/vehigologo.png" alt="VehiGo logo" />
</a>

<ul class="navbar-list" role="menubar" aria-label="Primary">
<li><a href="/src/index.html" class="navbar-link" role="menuitem">Home</a></li>
<li><a href="../src/index.html" class="navbar-link" role="menuitem">Home</a></li>
<li><a href="featured-car.html" class="navbar-link" role="menuitem">Explore cars</a></li>
<li><a href="./src/pages/about.html" class="navbar-link" role="menuitem">About us</a></li>
<li><a href="blog.html" class="navbar-link" role="menuitem">Blog</a></li>
Expand Down
9 changes: 9 additions & 0 deletions offline.html
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,15 @@
color: #4da8ff;
}

.dark-theme .footer-brand img {
filter: brightness(0) invert(1);
opacity: 1;
transition: opacity 0.3s ease;
}

.dark-theme .footer-brand:hover img {
opacity: 0.8;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.cards-container {
Expand Down
Loading