Archived
1
0
Fork 0

app/assets/sass/layout/_masthead.scss: Adding logo to masthead.

This commit is contained in:
Henrik Hautakoski 2022-08-09 21:00:24 +02:00
parent 32e5161c66
commit 7cbed511be

View file

@ -1,11 +1,19 @@
.masthead { .masthead {
@extend .container; @extend .container;
display: block; display: flex;
flex-direction: column;
text-align: center; text-align: center;
align-items: center;
padding-top: 2em; padding-top: 2em;
padding-bottom: 4em; padding-bottom: 4em;
.logo {
background: url(#{$image-path}/logo.png) no-repeat;
height: 220px;
width: 200px;
}
h1, p { h1, p {
color: $text-light-color; color: $text-light-color;
text-shadow: $header-text-shadow; text-shadow: $header-text-shadow;