Stylish Fire Button - 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>Stylish Fire Button</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f5f5f5; margin: 0; } .fire-button { padding: 20px 40px; font-size: 18px; font-weight: bold; color: #fff; background: linear-gradient(135deg, #e74c3c, #f39c12); border: none; border-radius: 30px; cursor: pointer; outline: none; position: relative; overflow: hidden; } .fire-button::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: rgba(231, 76, 60, 0.2); transition: all 0.5s ease; z-index: -1; } .fire-button:hover::before { left: 0; } .fire-button span { position: relative; z-index: 1; } </style> </head> <body> <button type="button" class="fire-button"> <span>Stylish Fire</span> </button> </body> </html>