Spaces:
Running
Running
File size: 1,792 Bytes
c001f24 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
<style>
/* Modern Navbar Styling */
.modern-navbar {
background: linear-gradient(135deg, #1a1d20 0%, #212529 100%);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
padding: 0.8rem 1rem;
}
.navbar-brand {
font-weight: 700;
letter-spacing: 0.5px;
color: #fff !important;
}
.nav-link {
font-weight: 500;
transition: all 0.3s ease;
border-radius: 5px;
padding: 8px 12px !important;
margin: 0 2px;
}
.nav-link:hover {
background-color: rgba(255, 255, 255, 0.1);
color: #0d6efd !important; /* Bootstrap primary blue */
transform: translateY(-1px);
}
.nav-link.active {
background-color: rgba(13, 110, 253, 0.15);
color: #0d6efd !important;
}
/* Mobile Toggler Styling */
.navbar-toggler {
border: none;
padding: 0.25rem 0.5rem;
}
.navbar-toggler:focus {
box-shadow: none;
outline: 2px solid rgba(13, 110, 253, 0.5);
}
</style>
<nav class="navbar navbar-expand-lg navbar-dark modern-navbar sticky-top">
<div class="container-fluid">
<!-- Brand -->
<a class="navbar-brand" href="{{ url_for('main.index_v2') }}">
<i class="bi bi-file-earmark-pdf-fill me-2 text-primary"></i>DocuPDF
</a>
<!-- Toggler Button (Hamburger) -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Collapsible Content -->
<div class="collapse navbar-collapse" id="navbarNav">
{% include '_nav_links.html' %}
</div>
</div>
</nav>
|