forked from Bunteshaus/bunteshaus.de
46 lines
899 B
SCSS
46 lines
899 B
SCSS
header {
|
|
width: 98vw;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
div {
|
|
display: flex;
|
|
height: 5rem;
|
|
margin-top: .5em;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
svg {
|
|
margin-left: 0.2vw;
|
|
width: auto;
|
|
height: 4em;
|
|
filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 1));
|
|
path {
|
|
fill: var(--logo-color) !important;
|
|
}
|
|
}
|
|
div {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
text-shadow: 0px 4px 4px var(--shadow-color);
|
|
a {
|
|
margin-left: .8rem;
|
|
}
|
|
}
|
|
}
|
|
hr {
|
|
|
|
}
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
header {
|
|
width: 86%;
|
|
div {
|
|
svg {
|
|
width: auto;
|
|
height: 7em;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|