From bfa440ac5e1adf41a83463785bc2dd8f40fa13bf Mon Sep 17 00:00:00 2001 From: MET18937 <79221078+MET18937@users.noreply.github.com> Date: Thu, 20 Apr 2023 17:29:50 +0200 Subject: [PATCH] Yum04 27 warenkorb (#9) * Page: "Warenkorb" created * Fixed: Spacing between border rows * Update ShoppingCart.razor --- Pages/ShoppingCart.razor | 129 ++++++++++++++++++++++++++++++++++ wwwroot/css/shopping_cart.css | 41 +++++++++++ wwwroot/index.html | 1 + 3 files changed, 171 insertions(+) create mode 100644 Pages/ShoppingCart.razor create mode 100644 wwwroot/css/shopping_cart.css diff --git a/Pages/ShoppingCart.razor b/Pages/ShoppingCart.razor new file mode 100644 index 0000000..cbd60aa --- /dev/null +++ b/Pages/ShoppingCart.razor @@ -0,0 +1,129 @@ +@page "/shopping_cart" + +Warenkorb + +

Warenkorb

+
+
+
+ +
+ + +
+
+
+ @*Tabelle Ihre Bestellung*@ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Ihre Bestellung
+ 1 Nudel mit Hühnerfleisch (groß) +
mit Knoblauchsoße
+
9,10€
1 Coca Cola2,50€
Summe11,60€
+ +
+ +
+
+
+ @*Essen Abholen?*@ +
+
+
+
+ + + + + + + + + + + + +
+ Wann wollen Sie Ihr Essen abholen? +
+
+
+ + +   + Uhr +
+
+
+
+
+
+
+ + @*Buttons*@ +
+
+
+ + +
+
+
+
+
+
+
diff --git a/wwwroot/css/shopping_cart.css b/wwwroot/css/shopping_cart.css new file mode 100644 index 0000000..fe6a336 --- /dev/null +++ b/wwwroot/css/shopping_cart.css @@ -0,0 +1,41 @@ +.tbl-container { + margin-top: 10px; + margin-left: 10px; +} + +.bg_green { + background-color: #89F9A5; +} + +.bdr { + border-radius: 17px; + overflow: hidden; + border-color: #C7FFD5; +} + +.bg_lightgreen { + background-color: #C7FFD5; +} + +.br { + border-right: solid 1px black; + border-collapse: collapse; + border-bottom-width: 0; +} + +.btn_back { + background-color: #F9BE89; + /*width: 60%;*/ + margin-bottom: 13px; + border-radius: 30px; + height: 50px; + border: 0px; +} + +.btn_forward { + background-color: #89F9A5; + /*width: 60%;*/ + border-radius: 30px; + height: 50px; + border: 0px; +} diff --git a/wwwroot/index.html b/wwwroot/index.html index ad1f5f8..c4584e3 100644 --- a/wwwroot/index.html +++ b/wwwroot/index.html @@ -9,6 +9,7 @@ +