mirror of
https://github.com/Alvin-Zilverstand/Schoolkantine.git
synced 2026-03-07 05:53:00 +01:00
Add order management functionality with order overview, retrieval, and completion features
This commit is contained in:
45
website/orders.css
Normal file
45
website/orders.css
Normal file
@@ -0,0 +1,45 @@
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
background-color: #f9f9f9;
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #F56E28;
|
||||
}
|
||||
|
||||
.orders-container {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.order {
|
||||
background-color: white;
|
||||
border: 2px solid #F56E28;
|
||||
border-radius: 10px;
|
||||
padding: 20px;
|
||||
width: 300px;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.order h2 {
|
||||
margin-top: 0;
|
||||
color: #F56E28;
|
||||
}
|
||||
|
||||
.order p {
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
.order ul {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.order li {
|
||||
margin: 5px 0;
|
||||
}
|
||||
Reference in New Issue
Block a user