prima prova

This commit is contained in:
PanSi21 2024-12-14 04:23:29 +01:00
parent 4009b1a0be
commit 1a59bcf2b0
Signed by untrusted user who does not match committer: PanSi21
GPG key ID: 755F8874C65EF462
9 changed files with 1387 additions and 0 deletions

47
public/styles.css Normal file
View file

@ -0,0 +1,47 @@
body {
font-family: Arial, sans-serif;
padding: 20px;
text-align: center;
}
h1, h2, h3 {
color: #333;
}
#product-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.product-card {
width: 200px;
margin: 10px;
padding: 15px;
border: 1px solid #ccc;
border-radius: 5px;
text-align: center;
}
button {
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
input, button {
padding: 10px;
margin: 10px;
}
#order-summary {
margin-top: 20px;
}