Dark Mode Status Ui - 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>Dark Mode Status UI</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> <style> body { font-family: 'Arial', sans-serif; background-color: #121212; color: #e0e0e0; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .status-container { width: 500px; background: #1f1f1f; border-radius: 20px; padding: 20px; box-shadow: 0 0 20px rgba(0, 0, 0, 0.8); } .status-header { display: flex; align-items: center; margin-bottom: 15px; } .profile-pic { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; margin-right: 15px; } .profile-pic img { width: 100%; height: auto; } .user-info h4 { margin: 0; font-size: 22px; color: #ffffff; } .status-input { width: 94%; border: none; border-radius: 20px; padding: 15px; font-size: 18px; background-color: #2c2c2c; color: #e0e0e0; box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8); outline: none; resize: none; } .status-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; } .status-icons i { font-size: 24px; margin-right: 15px; cursor: pointer; color: #e0e0e0; transition: color 0.3s ease; } .status-icons i:hover { color: #00ff9d; } .post-button { background: #00ff9d; color: #121212; padding: 12px 24px; border: none; border-radius: 20px; cursor: pointer; font-size: 16px; box-shadow: 0 0 10px rgba(0, 255, 155, 0.7); transition: background 0.3s ease; } .post-button:hover { background: #00d89a; } </style> </head> <body> <div class="status-container"> <div class="status-header"> <div class="profile-pic"> <img src="https://via.placeholder.com/60" alt="Profile Picture"> </div> <div class="user-info"> <h4>Michael Brown</h4> </div> </div> <textarea class="status-input" rows="5" placeholder="What's new?"></textarea> <div class="status-footer"> <div class="status-icons"> <i class="fas fa-camera"></i> <i class="fas fa-video"></i> <i class="fas fa-smile"></i> <i class="fas fa-map-marker-alt"></i> </div> <button class="post-button">Post</button> </div> </div> <script> document.querySelector('.post-button').addEventListener('click', () => { alert('Post has been made!'); }); </script> </body> </html>