Sunset Glow Blockquote - MeggiTools
Run
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>Sunset Glow Blockquote</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"> <style> body { font-family: 'Arial', sans-serif; background: linear-gradient(135deg, #ff9966, #ff5e62); height: 100vh; display: flex; justify-content: center; align-items: center; margin: 0; overflow: hidden; } .blockquote-glow { position: relative; max-width: 600px; width: 90%; padding: 20px; background: rgba(255, 255, 255, 0.1); border-radius: 15px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.18); animation: fadeIn 1.5s ease-out; } .blockquote-glow:before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(135deg, rgba(255, 153, 102, 0.2), rgba(255, 94, 98, 0.2)); animation: rotateBg 10s infinite linear; } .blockquote-glow blockquote { position: relative; margin: 0; padding: 20px; font-size: 1.2rem; color: #fff; z-index: 1; } .blockquote-glow blockquote::before { content: '\f10d'; font-family: 'FontAwesome'; font-size: 3rem; color: rgba(255, 255, 255, 0.3); position: absolute; top: 10px; left: 10px; } .blockquote-glow blockquote footer { display: flex; align-items: center; margin-top: 10px; color: rgba(255, 255, 255, 0.7); } .blockquote-glow blockquote footer .fa-user { margin-right: 5px; } @keyframes fadeIn { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } } @keyframes rotateBg { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } </style> </head> <body> <div class="blockquote-glow"> <blockquote> "Don't watch the clock; do what it does. Keep going." <footer> <i class="fas fa-user"></i> Sam Levenson </footer> </blockquote> </div> </body> </html>