Vintage Scroll - 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>Vintage Scroll</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background: #f4e7d3; font-family: 'Times New Roman', serif; } .vintage-scroll-box { width: 300px; height: 200px; overflow-y: auto; padding: 20px; background: #fff; border: 1px solid #b5a46e; border-radius: 5px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } .vintage-scroll-box p { margin: 0; line-height: 1.6; } .vintage-scroll-box::-webkit-scrollbar { width: 12px; } .vintage-scroll-box::-webkit-scrollbar-track { background: #e6dec7; border-radius: 6px; } .vintage-scroll-box::-webkit-scrollbar-thumb { background: #b5a46e; border-radius: 6px; border: 2px solid #e6dec7; } .vintage-scroll-box::-webkit-scrollbar-thumb:hover { background: #a38e5b; } </style> </head> <body> <div class="vintage-scroll-box"> <p>Sample text for the Vintage Scroll design. Add more text to make the scrollbar visible and usable.</p> <p>Sample text for the Vintage Scroll design. Add more text to make the scrollbar visible and usable.</p> <p>Sample text for the Vintage Scroll design. Add more text to make the scrollbar visible and usable.</p> </div> </body> </html>