112 lines
2.0 KiB
CSS
112 lines
2.0 KiB
CSS
/* Navigation*/
|
|
.navbar {
|
|
background-color: #212121 !important;
|
|
height: 70px;
|
|
}
|
|
|
|
.navbar .navbar-nav .nav-link {
|
|
color: #FFFFFF;
|
|
font-size: 13pt;
|
|
}
|
|
|
|
.navbar-expand-lg .navbar-nav .nav-link {
|
|
padding-right: 20px !important;
|
|
}
|
|
|
|
.navbar-brand img {
|
|
padding-left: 10px;
|
|
}
|
|
|
|
.nav-link.selected::after {
|
|
visibility: visible;
|
|
transform: scaleX(1);
|
|
}
|
|
|
|
.nav-link.active, .nav-link:hover, .nav-link:focus {
|
|
color: #4CAF50;
|
|
transition: color 0.5s ease;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.nav-link {
|
|
position: relative;
|
|
transition: all 0.3s ease-out;
|
|
}
|
|
|
|
.nav-link::after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 2px;
|
|
bottom: 0;
|
|
left: 0;
|
|
background-color: #4CAF50;
|
|
visibility: hidden;
|
|
transform: scaleX(0);
|
|
transition: all 0.3s ease-in-out 0s;
|
|
}
|
|
|
|
.nav-link:hover::after, .nav-link:focus::after {
|
|
visibility: visible;
|
|
transform: scaleX(1);
|
|
}
|
|
/* Navigationsende*/
|
|
|
|
|
|
section {
|
|
width: 100%;
|
|
height: 100vh;
|
|
}
|
|
|
|
#ueberUns {
|
|
background: linear-gradient(0deg, rgb(0, 159, 155), rgb(33,33,33));
|
|
}
|
|
|
|
#openingHours {
|
|
background: linear-gradient(180deg, rgb(0, 159, 155), rgb(157, 254, 175));
|
|
}
|
|
|
|
#patenshop {
|
|
background: linear-gradient(0deg, rgb(255, 255, 255), 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);
|
|
|
|
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;
|
|
}
|
|
|
|
footer {
|
|
height: 160px;
|
|
background-color: white;
|
|
}
|
|
|
|
.swiper {
|
|
width: 600px;
|
|
height: 300px;
|
|
}
|
|
|
|
.swiper-pagination-bullet {
|
|
background-color: rgba(0, 0, 0, 1) !important
|
|
}
|
|
|
|
@keyframes fade-in {
|
|
to { scale: 1; opacity: 1;}
|
|
}
|