WEBLEB
Startseite
Editor
Anmelden
Pro
Deutsch
English
Français
Español
Português
Deutsch
Italiano
हिंदी
2224
angrybird76
Im Editor öffnen
Veröffentlichen Sie Ihren Code
Empfohlen
21 January 2025
CodePen Home Sterne und Warp-Geschwindigkeit
18 July 2025
Unendliche Scroll-Illusion
8 July 2025
Charakterauswahl mit Vorschaukartenanimation (CSS-Sprites)
HTML
Copy
<
3D Login Page
Login
Login
!-- Replace with your HTML Code (Leave empty if not needed) -->
CSS
Copy
body { font-family: Arial, sans-serif; background-color: #0e7bad; } .container { width: 640px; margin: 100px auto; perspective: 1000px; } .login-form { position: relative; width: 100%; height: 400px; background-color: #1154ac; border: 1px solid #125fb8; border-radius: 10px; box-shadow: #109e34; transform: rotateY(0deg); transition: transform 0.5s; } .login-form:hover { transform: rotateY(30deg); } h1 { margin-top: 0; font-size: 24px; font-weight: bold; color: #000000; } form { padding: 35px; } input[type="text"], input[type="password"] { width: 100%; height: 40px; margin-bottom: 20px; padding: 8px; border: 1px solid #000508; border-radius: 5px; } button[type="submit"] { width: 100%; height: 40px; background-color: #4CAF50; color: #109e34; border: none; border-radius: 5px; cursor: pointer; } button[type="submit"]:hover { background-color: #3e8e41; } .progress-bar { width: 100%; height: 10px; background-color: #0b72a1; border-radius: 5px; } .progress { width: 50%; height: 10px; background-color: #021b3f; border-radius: 5px; } /* Replace with your CSS Code (Leave empty if not needed) */
JS
Copy
/* Replace with your JS Code (Leave empty if not needed) */