Minimalist Progress - 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>Minimalist Progress</title> <style> body { font-family: 'Helvetica Neue', sans-serif; background: #ececec; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; overflow: hidden; } .progress-container { width: 60%; max-width: 500px; padding: 20px; background: #fff; box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); border-radius: 10px; text-align: center; } .progress-container h1 { font-size: 1.5rem; margin-bottom: 20px; color: #333; } .progress-bar { width: 100%; background: #d3d3d3; border-radius: 5px; overflow: hidden; height: 30px; position: relative; } .progress { width: 50%; background: #4caf50; height: 100%; border-radius: 5px 0 0 5px; animation: progress-animation 2s ease-in-out; } @keyframes progress-animation { 0% { width: 0; } 100% { width: 50%; } } .progress::before { content: '50%'; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: #fff; font-weight: bold; } .progress-container .status { margin-top: 10px; font-size: 0.9rem; color: #666; display: flex; justify-content: space-between; } </style> </head> <body> <div class="progress-container"> <h1>Minimalist Progress</h1> <div class="progress-bar"> <div class="progress"></div> </div> <div class="status"> <span>🏁</span> <span>50% Complete</span> <span>🔄</span> </div> </div> </body> </html>