2024-04-17 08:32:48 +02:00
|
|
|
section {
|
|
|
|
width: 100%;
|
|
|
|
height: 100vh;
|
2024-04-17 09:33:26 +02:00
|
|
|
}
|
|
|
|
|
2024-04-17 22:17:36 +02:00
|
|
|
#openingHours {
|
|
|
|
background: linear-gradient(90deg, rgb(0, 159, 155), rgb(157, 254, 175));
|
|
|
|
}
|
|
|
|
|
|
|
|
.glass {
|
|
|
|
padding: 30px;
|
|
|
|
background: rgba(255, 255, 255, 0.2);
|
|
|
|
border-radius: 16px;
|
|
|
|
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
-webkit-backdrop-filter: blur(10px);
|
|
|
|
|
|
|
|
/* Animation */
|
|
|
|
scale: .8;
|
|
|
|
opacity: 0;
|
|
|
|
animation: fade-in linear forwards;
|
|
|
|
animation-timeline: view();
|
|
|
|
animation-range: entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table>:not(caption)>*>* {
|
|
|
|
background-color: transparent !important;
|
|
|
|
border-bottom-width: 0 !important;
|
|
|
|
}
|
|
|
|
|
2024-04-17 09:47:58 +02:00
|
|
|
footer {
|
2024-04-17 22:17:36 +02:00
|
|
|
height: 160px;
|
2024-04-17 10:06:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.swiper {
|
|
|
|
width: 600px;
|
|
|
|
height: 300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.swiper-pagination-bullet {
|
|
|
|
background-color: rgba(0, 0, 0, 1) !important
|
|
|
|
}
|
2024-04-17 22:17:36 +02:00
|
|
|
|
|
|
|
@keyframes fade-in {
|
|
|
|
to { scale: 1; opacity: 1;}
|
|
|
|
}
|