Monochrome Chic - 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>Monochrome Chic</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background: #333; color: #eee; font-family: 'Helvetica', sans-serif; } .monochrome-chic-box { width: 300px; height: 200px; overflow-y: auto; padding: 20px; background: #444; border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); } .monochrome-chic-box p { margin: 0; line-height: 1.6; } .monochrome-chic-box::-webkit-scrollbar { width: 10px; } .monochrome-chic-box::-webkit-scrollbar-track { background: #555; border-radius: 5px; } .monochrome-chic-box::-webkit-scrollbar-thumb { background: #888; border-radius: 5px; } .monochrome-chic-box::-webkit-scrollbar-thumb:hover { background: #aaa; } </style> </head> <body> <div class="monochrome-chic-box"> <p>Sample text for the Monochrome Chic design. Add more text to make the scrollbar visible and usable.</p> <p>Sample text for the Monochrome Chic design. Add more text to make the scrollbar visible and usable.</p> <p>Sample text for the Monochrome Chic design. Add more text to make the scrollbar visible and usable.</p> <p>Sample text for the Monochrome Chic design. Add more text to make the scrollbar visible and usable.</p> </div> </body> </html>