WEBLEB
Home
Editor
Accedi
Pro
Italiano
English
Français
Español
Português
Deutsch
Italiano
हिंदी
1026
logicalbug531
Apri nell'Editor
Pubblica il Tuo Codice
Consigliato
3 March 2025
Interruttore di alimentazione
HTML
Copy
COCCAINA MUZZ
Enter your name
CSS
Copy
/* Replace with your CSS Code (Leave empty if not needed) */ <style> *{ padding: 0; margin: 0; box-sizing: border-box; font-family: "Poppins", sans-serif; } body{ min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #191825; } .input-field{ position: relative; } .input-field input{ width: 350px; height: 60px; border-radius: 6px; font-size: 18px; padding: 0 15px; border: 2px solid #fff; background: transparent; outline: none; color: #fff; } .input-field label{ position: absolute; top: 50%; left: 15px; transform: translateY(-50%); color: #fff; font-size: 19px; pointer-events: none; transition: .3s; } input:focus{ border: 2px solid #1cd679; } input:focus ~ label, input:valid ~ label{ top: 0; font-size: 16px; padding: 0 10px; background: #191825; } </body> </html>
JS
Copy
/* Replace with your JS Code (Leave empty if not needed) */ 1 2