Move CSS styles to a separate stylesheet for better organization

This commit is contained in:
vista-man
2025-02-11 13:24:28 +01:00
parent 753a9895c3
commit d142e78db6
2 changed files with 70 additions and 71 deletions

View File

@@ -4,77 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>McDonald's Menu</title>
<style>
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: 100%;
max-width: 400px;
height: auto;
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%;
}
</style>
<link rel="stylesheet" href="style.css">
</head>
<body>

69
website/style.css Normal file
View File

@@ -0,0 +1,69 @@
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: 100%;
max-width: 400px;
height: auto;
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%;
}