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 @@ +