elisa
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2024-04-16 17:38:38 +02:00
parent 7f90ad4c05
commit 6b5c3c36ca
2 changed files with 13 additions and 0 deletions

BIN
src/img/elisa.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

View File

@ -241,3 +241,16 @@ button#cancel-button:not(:disabled):hover {
.form-row {
margin-bottom: 10px;
}
body {
/* Setzt das Bild als Hintergrund */
background-image: url('../img/elisa.jpg');
background-size: cover; /* Stellt sicher, dass das Bild den gesamten Hintergrund bedeckt */
background-position: center; /* Zentriert das Bild */
background-repeat: no-repeat; /* Verhindert das Wiederholen des Bildes */
/* Fügt eine schwarze, teilweise durchsichtige Schicht über das Bild */
background-color: rgba(0, 0, 0, 0.5); /* Schwarz mit 50% Transparenz */
background-blend-mode: multiply; /* Mischmodus, um die Transparenz zu erzeugen */
}