Skip to content

Commit

Permalink
improve header image
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Mar 7, 2024
1 parent 9bac6f4 commit 5b8bbfb
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 24 deletions.
31 changes: 24 additions & 7 deletions public/css/app.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,30 @@

.fusio-headline {
background-image: url('../img/intro.webp');
background-size: cover;
@media (min-width: 992px) {
.fusio-headline {
background-image: url('../img/intro_medium.webp');
background-size: cover;
}

.fusio-outro {
background: url('../img/intro_medium.webp') no-repeat top center;
background-size: cover;
transform: rotate(180deg);
height: 400px;
}
}

.fusio-outro {
background: url('../img/intro.webp') no-repeat top center;
transform: rotate(180deg);
height: 400px;
@media (max-width: 991px) {
.fusio-headline {
background-image: url('../img/intro_small.webp');
background-size: cover;
}

.fusio-outro {
background: url('../img/intro_small.webp') no-repeat top center;
background-size: cover;
transform: rotate(180deg);
height: 400px;
}
}

.fusio-footer a {
Expand Down
31 changes: 24 additions & 7 deletions public/css/app.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5b8bbfb

Please sign in to comment.