2024-01-12 17:05:04 +01:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
font-family: 'Arial', sans-serif;
|
|
|
|
}
|
|
|
|
|
2024-01-12 21:09:55 +01:00
|
|
|
.navbar {
|
2024-01-12 19:10:38 +01:00
|
|
|
background-color: #4A305A;
|
2024-01-12 21:09:55 +01:00
|
|
|
padding: 10px;
|
2024-01-12 17:05:04 +01:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2024-01-12 21:09:55 +01:00
|
|
|
.logo img {
|
|
|
|
width: 3cm;
|
|
|
|
height: 1.5cm;
|
|
|
|
margin-left: 2cm;
|
2024-01-12 17:05:04 +01:00
|
|
|
}
|
|
|
|
|
2024-01-12 21:09:55 +01:00
|
|
|
.nav-links {
|
2024-01-12 17:05:04 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2024-01-12 21:09:55 +01:00
|
|
|
.nav-link {
|
|
|
|
color: white;
|
|
|
|
text-decoration: none;
|
|
|
|
margin: 0 15px;
|
2024-01-12 17:05:04 +01:00
|
|
|
}
|
|
|
|
|
2024-01-12 21:09:55 +01:00
|
|
|
.reserve-btn {
|
|
|
|
background-color: #FFB039;
|
|
|
|
padding: 10px 20px;
|
|
|
|
border-radius: 10px;
|
2024-01-12 17:05:04 +01:00
|
|
|
}
|
|
|
|
|
2024-01-12 21:09:55 +01:00
|
|
|
/* ... (code précédent) */
|
2024-01-12 17:05:04 +01:00
|
|
|
|
2024-01-12 21:09:55 +01:00
|
|
|
.burger-menu {
|
2024-01-12 17:05:04 +01:00
|
|
|
display: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2024-01-12 21:09:55 +01:00
|
|
|
.burger-menu div {
|
|
|
|
width: 25px;
|
|
|
|
height: 3px;
|
|
|
|
background-color: white;
|
|
|
|
margin: 6px 0;
|
2024-01-12 17:05:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 768px) {
|
2024-01-12 21:09:55 +01:00
|
|
|
.nav-links {
|
2024-01-12 17:05:04 +01:00
|
|
|
display: none;
|
2024-01-12 21:09:55 +01:00
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2024-01-12 17:05:04 +01:00
|
|
|
position: absolute;
|
|
|
|
top: 60px;
|
|
|
|
left: 0;
|
2024-01-12 21:09:55 +01:00
|
|
|
width: 100%;
|
|
|
|
background-color: #4A305A;
|
|
|
|
z-index: 1;
|
2024-01-12 17:05:04 +01:00
|
|
|
}
|
|
|
|
|
2024-01-12 21:09:55 +01:00
|
|
|
.nav-links.show {
|
2024-01-12 17:05:04 +01:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2024-01-12 21:09:55 +01:00
|
|
|
.nav-link {
|
|
|
|
margin: 10px 0;
|
2024-01-12 17:05:04 +01:00
|
|
|
}
|
|
|
|
|
2024-01-12 21:09:55 +01:00
|
|
|
.burger-menu {
|
2024-01-12 17:05:04 +01:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|