Aggiunta pagina "I miei ordini"

This commit is contained in:
2026-04-08 11:22:16 +02:00
parent a5230401a3
commit 7389a6e951
2 changed files with 147 additions and 0 deletions
+55
View File
@@ -264,4 +264,59 @@ form button:hover {
.my-container {
flex: 1 1 100%;
}
}
/* Stili per la pagina ordini */
.orders-list {
display: flex;
flex-direction: column;
gap: 20px;
}
.order-card {
border: 1px solid #ddd;
border-radius: 8px;
padding: 20px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.order-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
}
.order-header h3 {
margin: 0;
color: #333;
}
.order-status {
padding: 5px 10px;
border-radius: 4px;
font-size: 12px;
font-weight: bold;
text-transform: uppercase;
}
.status-pending {
background-color: #ffc107;
color: #212529;
}
.status-completed {
background-color: #28a745;
color: white;
}
.status-cancelled {
background-color: #dc3545;
color: white;
}
.order-details p {
margin: 5px 0;
color: #666;
}