64 lines
999 B
SCSS
64 lines
999 B
SCSS
@use '../abstract' as abstract;
|
|
|
|
#impressum {
|
|
flex: 0 0 auto;
|
|
text-align: right;
|
|
margin-top: 30px;
|
|
padding: 5px;
|
|
|
|
.nav {
|
|
margin-bottom: 0;
|
|
background-color: inherit;
|
|
display: inline-block;
|
|
|
|
> li {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
a {
|
|
text-decoration: underline;
|
|
padding: 10px;
|
|
}
|
|
}
|
|
|
|
#footer {
|
|
flex: 0 0 auto;
|
|
background-color: black;
|
|
|
|
// color: white;
|
|
text-align: center;
|
|
padding: 5px;
|
|
font-size: x-small;
|
|
line-height: 100%;
|
|
color: gray;
|
|
|
|
> .customimpressum {
|
|
float: left;
|
|
}
|
|
|
|
> .customdatenschutz {
|
|
float: right;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: underline;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: black;
|
|
background-color: white;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
|
|
#footline {
|
|
margin-top: 10px;
|
|
|
|
@include abstract.for-desktop {
|
|
flex: none;
|
|
}
|
|
}
|