diff --git a/src/img/elisa.jpg b/src/img/elisa.jpg new file mode 100644 index 0000000..6b3962d Binary files /dev/null and b/src/img/elisa.jpg differ diff --git a/src/static/style.css b/src/static/style.css index 1459b75..57aecb5 100644 --- a/src/static/style.css +++ b/src/static/style.css @@ -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 */ +} +