css/install.css aktualisiert

This commit is contained in:
M_Viper 2024-02-25 15:26:18 +00:00
parent d731f0e430
commit 9203cd0bfb
1 changed files with 60 additions and 46 deletions

View File

@ -1,46 +1,60 @@
body { body {
font-family: Arial, sans-serif; font-family: Arial, sans-serif;
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
.container { .container {
width: 400px; /* Festgelegte Breite für die Box */ width: 400px; /* Festgelegte Breite für die Box */
margin: 50px auto; /* Zentriert auf der Seite */ margin: 50px auto; /* Zentriert auf der Seite */
padding: 20px; padding: 20px;
border: 1px solid #ccc; /* Rand für die Box */ border: 1px solid #ccc; /* Rand für die Box */
} }
h1, h2 { h1, h2 {
color: #333; color: #333;
} }
form { form {
margin-bottom: 20px; margin-bottom: 20px;
} }
form label { form label {
display: block; display: block;
margin-bottom: 5px; margin-bottom: 5px;
} }
form input[type="text"], form input[type="text"],
form input[type="password"], form input[type="password"],
form input[type="email"], form input[type="email"],
form input[type="submit"] { form input[type="number"],
padding: 8px; form input[type="submit"] {
margin-bottom: 10px; padding: 8px;
width: 100%; margin-bottom: 10px;
box-sizing: border-box; width: 100%;
} box-sizing: border-box;
}
form input[type="submit"] {
background-color: #4CAF50; form input[type="submit"] {
color: white; background-color: #4CAF50;
border: none; color: white;
cursor: pointer; border: none;
} cursor: pointer;
}
form input[type="submit"]:hover {
background-color: #45a049; form input[type="submit"]:hover {
} background-color: #45a049;
}
.watermark {
position: fixed;
bottom: 10px;
right: 10px;
color: rgba(0, 0, 0, 0.3); /* Farbe des Wasserzeichens */
font-size: 10px;
pointer-events: none; /* Damit das Wasserzeichen nicht klickbar ist */
}
img {
width: 80px; /* Breite des Logos anpassen */
height: auto; /* Automatische Anpassung der Höhe */
}