Golden Age - 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>Golden Age</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background: #fff6e6; font-family: 'Verdana', sans-serif; } .golden-age-box { width: 300px; height: 200px; overflow-y: auto; padding: 20px; background: #fff2cc; border: 1px solid #ffd966; border-radius: 10px; box-shadow: 0 4px 6px rgba(255, 217, 102, 0.5); } .golden-age-box p { margin: 0; } .golden-age-box::-webkit-scrollbar { width: 12px; } .golden-age-box::-webkit-scrollbar-track { background: #ffe6b3; border-radius: 6px; } .golden-age-box::-webkit-scrollbar-thumb { background: #ffcc00; border-radius: 6px; } .golden-age-box::-webkit-scrollbar-thumb:hover { background: #e6b800; } </style> </head> <body> <div class="golden-age-box"> <p>Sample text for the Golden Age design. Add more text to make the scrollbar visible and usable.</p> <p>Sample text for the Golden Age design. Add more text to make the scrollbar visible and usable.</p> <p>Sample text for the Golden Age design. Add more text to make the scrollbar visible and usable.</p> <p>Sample text for the Golden Age design. Add more text to make the scrollbar visible and usable.</p> </div> </body> </html>