Minimalist Textarea - 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>Minimalist TextArea</title> <style> body { font-family: 'Poppins', sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; background: #ffffff; margin: 0; } .textarea-container { position: relative; width: 400px; max-width: 90%; } .custom-textarea { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; resize: none; outline: none; background-color: #f9f9f9; transition: border-color 0.3s, box-shadow 0.3s; } .custom-textarea:focus { border-color: #333; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } .icon { position: absolute; top: 50%; right: 15px; transform: translateY(-50%); cursor: pointer; font-size: 1.5rem; color: #333; } </style> </head> <body> <div class="textarea-container"> <textarea class="custom-textarea" rows="5" placeholder="Type your message..."></textarea> <div class="icon">📝</div> </div> </body> </html>