Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
HTML
CSS
Product Studio
☰
Docs
Components
Pricing
Support
:root { color-scheme: light dark; } body { margin: 0; font-family: "Inter" , sans-serif; } .navbar { display: flex; align-items: center; justify-content: space-between; padding: 18px clamp(16px, 6vw, 48px); background: #0f172a; color: #fff; } .nav-links { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; } .nav-links a { color: #fff; text-decoration: none; } .nav-toggle { display: none; border: 0; background: transparent; color: inherit; font-size: 1.5rem; } @media (max-width: 768px) { .nav-links { position: absolute; inset: 72px 16px auto 16px; flex-direction: column; padding: 24px; border-radius: 16px; background: rgba(15, 23, 42, 0.92); backdrop-filter: blur(10px); transform-origin: top right; transform: scale(0.9); opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease; } .nav-links[data-open="true"] { opacity: 1; pointer-events: auto; transform: scale(1); } .nav-toggle { display: inline-flex; } }