Description
.nutrition-table-wrapper {
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
background-color: #f9f9f9;
}
.nutrition-table {
width: 100%;
max-width: 700px;
border-collapse: collapse;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.05);
background: linear-gradient(to bottom, #ffffff, #f0f0f0);
font-family: Arial, sans-serif;
}
.nutrition-table th,
.nutrition-table td {
padding: 12px 15px;
text-align: left;
border-bottom: 1px solid #ddd;
}
.nutrition-table th {
background-color: #333;
color: #fff;
font-weight: bold;
text-transform: uppercase;
}
.nutrition-table tr:nth-child(even) {
background-color: #f2f2f2;
}
.nutrition-table tr:hover {
background-color: rgba(209, 209, 209, 0.5);
cursor: pointer;
}
@media (max-width: 600px) {
.nutrition-table th,
.nutrition-table td {
font-size: 14px;
padding: 8px;
}
}
.note {
font-size: 12px;
text-align: center;
color: #555;
margin-top: 10px;
}








Avis
Il n’y a pas encore d’avis.