From 8b6ced83d8ca0fa39f1fe396d7e790832bced383 Mon Sep 17 00:00:00 2001 From: rgemm Date: Fri, 25 Apr 2025 19:23:30 +0200 Subject: [PATCH] Bestellformular hat im Warenkorb keinen Sinn gemacht. Setze ihn an andere Stelle --- public/Warenkorb/warenkorb.html | 3 +- public/bestellformular/bestellformular.html | 41 ----------- static/Styles/Warenkorb/warenkorb.css | 70 +++++++++++++++++++ .../bestellformular/bestellformular.css | 52 -------------- 4 files changed, 71 insertions(+), 95 deletions(-) delete mode 100644 public/bestellformular/bestellformular.html delete mode 100644 static/Styles/bestellformular/bestellformular.css diff --git a/public/Warenkorb/warenkorb.html b/public/Warenkorb/warenkorb.html index ab0c188..5373864 100644 --- a/public/Warenkorb/warenkorb.html +++ b/public/Warenkorb/warenkorb.html @@ -26,8 +26,7 @@
- - Zur Kasse gehen + diff --git a/public/bestellformular/bestellformular.html b/public/bestellformular/bestellformular.html deleted file mode 100644 index 96c2706..0000000 --- a/public/bestellformular/bestellformular.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - Bestellformular - - - -
-
-

Bestellformular

- - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - diff --git a/static/Styles/Warenkorb/warenkorb.css b/static/Styles/Warenkorb/warenkorb.css index 23fc4b9..eb64110 100644 --- a/static/Styles/Warenkorb/warenkorb.css +++ b/static/Styles/Warenkorb/warenkorb.css @@ -91,4 +91,74 @@ body { transition: background-color 0.3s; } +body { + font-family: Arial, sans-serif; + background-color: #f2f2f2; + padding: 20px; +} + +.form-container { + max-width: 600px; + margin: auto; + background-color: #ffffff; + padding: 25px; + border-radius: 8px; + box-shadow: 0 0 10px rgba(0,0,0,0.1); +} + +form h2 { + text-align: center; + margin-bottom: 20px; +} + +label { + display: block; + margin-top: 15px; + font-weight: bold; +} + +input[type="text"], +input[type="tel"], +textarea { + width: 100%; + padding: 10px; + margin-top: 5px; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; +} + +input[type="submit"] { + margin-top: 20px; + background-color: #ff6600; + color: white; + border: none; + padding: 12px; + border-radius: 5px; + font-size: 16px; + cursor: pointer; + width: 100%; +} + +input[type="submit"]:hover { + background-color: #ff6600; +} + +.zurKasse { + display: block; + margin: 20px auto; + background-color: #ff6600; + color: white; + border: none; + padding: 12px 24px; + font-size: 16px; + border-radius: 8px; + cursor: pointer; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); +} + +.zurKasse:hover { + background-color: #ff6600; +} + diff --git a/static/Styles/bestellformular/bestellformular.css b/static/Styles/bestellformular/bestellformular.css deleted file mode 100644 index 3857f2d..0000000 --- a/static/Styles/bestellformular/bestellformular.css +++ /dev/null @@ -1,52 +0,0 @@ -body { - font-family: Arial, sans-serif; - background-color: #f2f2f2; - padding: 20px; -} - -.form-container { - max-width: 600px; - margin: auto; - background-color: #ffffff; - padding: 25px; - border-radius: 8px; - box-shadow: 0 0 10px rgba(0,0,0,0.1); -} - -form h2 { - text-align: center; - margin-bottom: 20px; -} - -label { - display: block; - margin-top: 15px; - font-weight: bold; -} - -input[type="text"], -input[type="tel"], -textarea { - width: 100%; - padding: 10px; - margin-top: 5px; - border: 1px solid #ccc; - border-radius: 4px; - box-sizing: border-box; -} - -input[type="submit"] { - margin-top: 20px; - background-color: #ff6600; - color: white; - border: none; - padding: 12px; - border-radius: 5px; - font-size: 16px; - cursor: pointer; - width: 100%; -} - -input[type="submit"]:hover { - background-color: #ff6600; -}