Nature Inspired - 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>Nature Inspired</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background: #dff0d8; font-family: 'Arial', sans-serif; } .nature-inspired-box { width: 300px; height: 200px; overflow-y: auto; padding: 20px; background: #fff; border: 1px solid #9bcb8e; border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } .nature-inspired-box p { margin: 0; } .nature-inspired-box::-webkit-scrollbar { width: 12px; } .nature-inspired-box::-webkit-scrollbar-track { background: #e1f1dd; border-radius: 6px; } .nature-inspired-box::-webkit-scrollbar-thumb { background: #81c784; border-radius: 6px; } .nature-inspired-box::-webkit-scrollbar-thumb:hover { background: #66bb6a; } </style> </head> <body> <div class="nature-inspired-box"> <p>Sample text for the Nature Inspired design. Add more text to make the scrollbar visible and usable.</p> <p>Sample text for the Nature Inspired design. Add more text to make the scrollbar visible and usable.</p> <p>Sample text for the Nature Inspired design. Add more text to make the scrollbar visible and usable.</p> <p>Sample text for the Nature Inspired design. Add more text to make the scrollbar visible and usable.</p> <p>Sample text for the Nature Inspired design. Add more text to make the scrollbar visible and usable.</p> </div> </body> </html>