This commit is contained in:
cowboykipnugget
2025-02-18 09:23:52 +01:00
parent 1f418f9c85
commit a947b035d3
2 changed files with 6 additions and 5 deletions

View File

@@ -17,7 +17,7 @@
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
padding: 10px 0; padding: 10px 0;
border-bottom: 1px solid #ddd; border-bottom: 1px solid #ff9d3b;
} }
.cart-item button { .cart-item button {

View File

@@ -4,20 +4,20 @@ body {
margin: 0; margin: 0;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
background-color: #f2c14e; background-color: #ffffff;
} }
/* Linkerkant menu */ /* Linkerkant menu */
.menu-list { .menu-list {
width: 25%; width: 25%;
background-color: #f2c14e; background-color: #d7d7d7;
padding: 20px; padding: 20px;
height: 100vh; height: 100vh;
overflow-y: auto; overflow-y: auto;
} }
.menu-item { .menu-item {
background-color: #fff; background-color: #ff9d3b;
padding: 20px; padding: 20px;
margin: 10px 0; margin: 10px 0;
border-radius: 8px; border-radius: 8px;
@@ -27,7 +27,7 @@ body {
} }
.menu-item:hover { .menu-item:hover {
background-color: #f59e42; background-color: #ff9d3b;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
} }
@@ -49,6 +49,7 @@ body {
text-align: center; text-align: center;
cursor: pointer; cursor: pointer;
transition: all 0.3s ease; transition: all 0.3s ease;
background-color: #e3e3e3 ;
} }