Update layout

This commit is contained in:
Patrick Neff 2019-01-08 02:19:26 +01:00
parent 2cfeddd430
commit d9b9c7615e
10 changed files with 36 additions and 9 deletions

View File

@ -1,9 +1,10 @@
#banner { #banner {
font-size: 1.2rem; font-size: 1.2rem;
position: absolute; position: absolute;
top: 155px; top: 105px;
width: 100%; width: 100%;
transition: 0.6s; transition: 0.6s;
z-index: 500;
h1 { h1 {
font-size: 1.4rem; font-size: 1.4rem;
@ -18,4 +19,9 @@
top: -200px; top: -200px;
transition: 0.6s; transition: 0.6s;
} }
}
@media only screen and (min-width: calc(#{$max-width} + calc(6 * #{$gutter-width}))) {
#banner {
top: 155px;
}
} }

View File

@ -12,13 +12,32 @@ body {
padding: 155px 0 0 0; padding: 155px 0 0 0;
margin: 0; margin: 0;
background-color: $background-color; background-color: $background-color;
background-image: url(#{$background-image});
background-size: 100%; background-size: 100%;
background-position: center; background-position: center;
background-attachment: fixed; background-attachment: fixed;
background-size: cover;
background-image: url(#{$background-image-phone});
color: $font-color; color: $font-color;
} }
@media only screen and (orientation: portrait) {
body {
background-image: url(#{$background-image-phone});
}
}
@media only screen and (min-width: 600px) and (orientation: landscape) {
body {
background-image: url(#{$background-image-small});
}
}
@media only screen and (min-width: 1200px) {
body {
background-image: url(#{$background-image});
}
}
header { header {
margin: 0; margin: 0;
} }

View File

@ -5,6 +5,7 @@
top: 0; top: 0;
left: 0; left: 0;
font-family: $heading-font-family; font-family: $heading-font-family;
z-index: 2000;
&.small { &.small {
transition: $transition-time; transition: $transition-time;

View File

@ -27,13 +27,14 @@
border-radius: $border-radius; border-radius: $border-radius;
padding: $gutter-width; padding: $gutter-width;
margin: calc(100vh - 320px) -$gutter-width 0 -$gutter-width; margin: calc(100vh - 320px) -$gutter-width 0 -$gutter-width;
min-width: $min-column-width-desktop; overflow: none;
min-width: 100%;
@media only screen and (min-width: calc(#{$max-width} + calc(6 * #{$gutter-width}))) { @media only screen and (min-width: calc(#{$max-width} + calc(6 * #{$gutter-width}))) {
margin-top: calc(100vh - 285px); margin-top: calc(100vh - 285px);
margin-bottom: -$gutter-width; margin-bottom: -$gutter-width;
margin-right: -$gutter-width; margin-left: 67%;
margin-left: calc(-2 * #{$gutter-width}); max-width: 33%;
} }
ul { ul {

View File

@ -16,4 +16,6 @@ $border-radius: 5px;
$fa-font-path: "/fonts"; $fa-font-path: "/fonts";
$background-image: "/img/background.webp"; $background-image: "/img/background.jpg";
$background-image-phone: "/img/background-phone.jpg";
$background-image-small: "/img/background-small.jpg";

View File

@ -2,8 +2,6 @@
<div id="index"> <div id="index">
<div class="container transparent"> <div class="container transparent">
<section class="flex row"> <section class="flex row">
<div class="padding"></div>
<div class="padding"></div>
<div id="index-short-contact"> <div id="index-short-contact">
<div class="phone"> <div class="phone">
<i class="fa fa-phone"></i>: {{ (index .Site.Data.contact.contact 0).telephone }} <i class="fa fa-phone"></i>: {{ (index .Site.Data.contact.contact 0).telephone }}

View File

@ -1,7 +1,7 @@
{{- with .Params.banner }} {{- with .Params.banner }}
<section id="banner"> <section id="banner">
<div class="container"> <div class="container">
<div id="banner-container"> <div id="banner-container" class="padding">
{{ . | markdownify }} {{ . | markdownify }}
</div> </div>
</div> </div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 324 KiB