Shadow Breadcrumb - VexaX
Run Code
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Shadow Breadcrumb</title> <style> body { font-family: 'Arial', sans-serif; background-color: #333; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .breadcrumb { display: flex; list-style: none; padding: 0; margin: 0; background: #444; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); } .breadcrumb li { position: relative; padding: 12px 20px; cursor: pointer; transition: box-shadow 0.3s, transform 0.3s; } .breadcrumb li:hover { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); transform: scale(1.05); } .breadcrumb a { text-decoration: none; color: #eee; font-weight: bold; display: flex; align-items: center; } .breadcrumb a span.icon { margin-right: 10px; font-size: 1.5em; } @keyframes shadowPulse { 0%, 100% { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } 50% { box-shadow: 0 0 20px rgba(0, 0, 0, 1); } } .breadcrumb a .icon { animation: shadowPulse 2s infinite; } </style> </head> <body> <ul class="breadcrumb"> <li> <a href="#"><span class="icon">🏠</span>Home</a> </li> <li> <a href="#"><span class="icon">💼</span>Work</a> </li> <li> <a href="#"><span class="icon">📄</span>Projects</a> </li> </ul> </body> </html>