67 lines
845 B
CSS
67 lines
845 B
CSS
body,
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
.background {
|
|
-webkit-background-size: cover;
|
|
-moz-background-size: cover;
|
|
-o-background-size: cover;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
}
|
|
|
|
.intro {
|
|
background: url(../images/intro_bg.jpg);
|
|
}
|
|
|
|
.gruener-salon {
|
|
background: url(../images/arche_bg.jpg);
|
|
}
|
|
|
|
.arboretum {
|
|
background: url(../images/arboretum_bg.jpg);
|
|
}
|
|
|
|
.page-content {
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
.sticky-footer {
|
|
flex-shrink: none;
|
|
color: white;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.text-dark {
|
|
color: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.copyright {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
.transparent {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.btn-link {
|
|
color: white;
|
|
}
|
|
|
|
.text-dark .btn-link {
|
|
color: unset;
|
|
}
|
|
|
|
.btn-link:hover {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.card-img-top #mapdiv {
|
|
height: 200px;
|
|
}
|
|
|
|
.no-content {
|
|
filter: blur(10px);
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
} |