Files
Schoolkantine/website/style.css
cowboykipnugget d32b362f1b ada
2025-02-12 09:35:04 +01:00

71 lines
1.1 KiB
CSS

/* Algemeen stijlen */
body {
font-family: Arial, sans-serif;
margin: 0;
display: flex;
}
/* Linkerkant: Het menu */
.menu-list {
width: 30%;
background-color: #f2c14e;
padding: 20px;
height: 100vh;
overflow-y: auto;
}
.menu-list h2 {
color: #d32f2f;
font-size: 2em;
margin-bottom: 20px;
}
.menu-item {
background-color: #fff;
padding: 15px;
margin: 10px 0;
border-radius: 8px;
cursor: pointer;
font-size: 1.2em;
}
.menu-item:hover {
background-color: #f59e42;
}
/* Rechterkant: Detail weergave */
.menu-detail {
width: 70%;
background-color: white;
padding: 20px;
display: none; /* Start verborgen */
}
.menu-detail img {
width: 70%;
max-width: 200px;
max-height: 400px;
margin-bottom: 20px;
}
.menu-detail h2 {
color: #d32f2f;
font-size: 2em;
}
.menu-detail p {
font-size: 1.2em;
color: #555;
margin: 20px 0;
}
/* Footer */
footer {
text-align: center;
padding: 20px;
background-color: #f2c14e;
position: fixed;
bottom: 0;
width: 100%;
}