File size: 2,177 Bytes
d255648 |
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 66 67 68 69 70 71 72 73 74 |
class CustomNavbar extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
nav {
background: rgba(26, 32, 44, 0.8);
backdrop-filter: blur(10px);
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.logo {
font-family: 'JetBrains Mono', monospace;
color: white;
font-weight: bold;
font-size: 1.25rem;
background: linear-gradient(135deg, #3a86ff 0%, #8338ec 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
ul {
display: flex;
gap: 1.5rem;
list-style: none;
margin: 0;
padding: 0;
align-items: center;
}
a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: color 0.2s;
font-weight: 500;
display: flex;
align-items: center;
}
a:hover {
color: #3a86ff;
}
.nav-link i {
margin-right: 0.5rem;
}
@media (max-width: 768px) {
nav {
flex-direction: column;
padding: 1rem;
}
ul {
margin-top: 1rem;
}
}
</style>
<nav>
<div class="logo">Python Security Wizard</div>
<ul>
<li><a href="#hero" class="nav-link"><i data-feather="home"></i> Home</a></li>
<li><a href="#about" class="nav-link"><i data-feather="user"></i> About</a></li>
<li><a href="#projects" class="nav-link"><i data-feather="code"></i> Projects</a></li>
<li><a href="#contact" class="nav-link"><i data-feather="mail"></i> Contact</a></li>
</ul>
</nav>
`;
}
}
customElements.define('custom-navbar', CustomNavbar); |