forked from neff/neff-steindesign.de
59 lines
1.3 KiB
SCSS
59 lines
1.3 KiB
SCSS
#index {
|
|
#index-hero {
|
|
div {
|
|
text-align: center;
|
|
|
|
img.hero {
|
|
margin: 0.5rem auto 0;
|
|
max-width: 150px;
|
|
height: auto;
|
|
}
|
|
|
|
header,
|
|
div.content {
|
|
text-align: left;
|
|
}
|
|
}
|
|
}
|
|
|
|
#index-title {
|
|
display: none;
|
|
}
|
|
|
|
#index-short-contact {
|
|
font-size: 1.1rem;
|
|
align-items: top;
|
|
background-color: rgba(255, 255, 255, 0.9);
|
|
height: 90px;
|
|
border-radius: $border-radius;
|
|
padding: $gutter-width;
|
|
margin: calc(100vh - 320px) -$gutter-width 0 -$gutter-width;
|
|
min-width: $min-column-width-desktop;
|
|
|
|
@media only screen and (min-width: calc(#{$max-width} + calc(6 * #{$gutter-width}))) {
|
|
margin-top: calc(100vh - 285px);
|
|
margin-bottom: -$gutter-width;
|
|
margin-right: -$gutter-width;
|
|
margin-left: calc(-2 * #{$gutter-width});
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
|
|
li {
|
|
margin: 0.5rem $gutter-width;
|
|
font-size: 2rem;
|
|
}
|
|
}
|
|
|
|
& > * {
|
|
flex: 1 0 0;
|
|
}
|
|
}
|
|
}
|