71 lines
1.1 KiB
CSS
71 lines
1.1 KiB
CSS
/* Allgemein */
|
|
body{
|
|
font-family: "Yanone Kaffeesatz";
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.navbar,
|
|
.carousel {
|
|
border-bottom: 1px solid #888;
|
|
}
|
|
|
|
.red {
|
|
color: red;
|
|
}
|
|
|
|
/* Navigation */
|
|
.nav-link {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.nav-link:active,
|
|
.nav-link-hover {
|
|
color: red !important;
|
|
}
|
|
|
|
.icon-link:active,
|
|
.icon-link:hover svg {
|
|
color: red;
|
|
}
|
|
|
|
/* Slider */
|
|
.slider-image {
|
|
width: 100vw;
|
|
height: 70vh;
|
|
background-size: cover;
|
|
background-position: center;
|
|
}
|
|
|
|
/* Produkt Cards */
|
|
|
|
.card-image {
|
|
height: 500px;
|
|
background-size: cover;
|
|
background-position: center;
|
|
}
|
|
|
|
@media (max-width: 991px) {
|
|
.card-group {
|
|
display: flex;
|
|
flex-flow: column wrap;
|
|
}
|
|
}
|
|
|
|
/* Über uns */
|
|
|
|
.about-image {
|
|
width: 280px;
|
|
height: 280px;
|
|
border-radius: 50%;
|
|
background-position: center;
|
|
background-size: cover;
|
|
}
|
|
|
|
/* Footer */
|
|
|
|
.footer {
|
|
font-family: sans-serif;
|
|
font-size: 1rem;
|
|
text-align: center;
|
|
border-top: 1px solid #888;
|
|
} |