Spaces:
Sleeping
Sleeping
File size: 971 Bytes
add9e3d 803113c add9e3d 803113c add9e3d 803113c add9e3d 803113c add9e3d 803113c add9e3d 2df4b7f 56e9f63 803113c 56e9f63 803113c 56e9f63 2df4b7f 56e9f63 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: #f9f9f9;
}
.menu-item {
border: 1px solid #ddd;
border-radius: 8px;
padding: 10px;
width: 300px;
background-color: white;
text-align: center;
margin-bottom: 20px;
}
.dish-image {
width: 100px;
height: 100px;
object-fit: cover;
margin-bottom: 10px;
}
.add-button {
background-color: #28a745;
color: white;
border: none;
padding: 10px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
.add-button:hover {
background-color: #218838;
}
/* Modal Window */
.popup {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 50%;
background-color: white;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
border-radius: 8px;
z-index: 1000;
}
.popup.show {
display: block;
}
.popup button {
margin-top: 10px;
}
|