diff --git a/public/css/app.css b/public/css/app.css index 5870378..bd170ce 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -425,14 +425,19 @@ section .login input { section #deleteCartButton { color: #fe5f1e; } +section input::-webkit-outer-spin-button, +section input::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; +} section.menu img { - transition: transform 0.3s; + transition: transform 0.2s; z-index: -1; } section.menu img:hover { - transform: scale(1.2); + transform: scale(1.1); z-index: -1; } diff --git a/public/img/hero-pizza2.png b/public/img/hero-pizza2.png deleted file mode 100644 index 0f5ad1a..0000000 Binary files a/public/img/hero-pizza2.png and /dev/null differ diff --git a/public/img/piz1.jpg b/public/img/piz1.jpg deleted file mode 100644 index 7ddf9a6..0000000 Binary files a/public/img/piz1.jpg and /dev/null differ diff --git a/public/img/piz2.jpg b/public/img/piz2.jpg deleted file mode 100644 index b94f3d5..0000000 Binary files a/public/img/piz2.jpg and /dev/null differ diff --git a/public/img/piz3.jpg b/public/img/piz3.jpg deleted file mode 100644 index 385239a..0000000 Binary files a/public/img/piz3.jpg and /dev/null differ diff --git a/public/img/piz4.jpg b/public/img/piz4.jpg deleted file mode 100644 index ce9ea5b..0000000 Binary files a/public/img/piz4.jpg and /dev/null differ diff --git a/src/scss/app.scss b/src/scss/app.scss index a75f439..19c7c51 100644 --- a/src/scss/app.scss +++ b/src/scss/app.scss @@ -108,15 +108,21 @@ section { #deleteCartButton { color: $primary; } + + input::-webkit-outer-spin-button, + input::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; + } } // Hover Pizza section.menu img { - transition: transform 0.3s; + transition: transform 0.2s; z-index: -1; } section.menu img:hover { - transform: scale(1.2); + transform: scale(1.1); z-index: -1; } diff --git a/src/views/customers/cart.ejs b/src/views/customers/cart.ejs index 867c718..9a5954c 100644 --- a/src/views/customers/cart.ejs +++ b/src/views/customers/cart.ejs @@ -10,7 +10,7 @@
<% for(let pizza of Object.values(session.cart.items)) { %>
- +

<%= pizza.item.name %> @@ -35,13 +35,13 @@
Total Amount: - <%= session.cart.totalPrice %>$ + <%= session.cart.totalPrice %> $
<% if(user) { %>
- diff --git a/src/views/home.ejs b/src/views/home.ejs index 5f3b3a2..5bc0f85 100644 --- a/src/views/home.ejs +++ b/src/views/home.ejs @@ -16,32 +16,120 @@
- + \ No newline at end of file diff --git a/src/views/layout.ejs b/src/views/layout.ejs index 2328baf..6e5f95d 100644 --- a/src/views/layout.ejs +++ b/src/views/layout.ejs @@ -13,7 +13,7 @@ -