25 lines
417 B
SCSS
25 lines
417 B
SCSS
header {
|
|
background-image: url("../img/header.jpg");
|
|
min-height: 100%;
|
|
|
|
h1 {
|
|
@extend .text-shadow;
|
|
font-size: $font-size-h1 * 1.5;
|
|
}
|
|
|
|
.page-scroll {
|
|
position: absolute;
|
|
bottom: 10%;
|
|
color: $white;
|
|
|
|
& > i {
|
|
font-size: $font-size-h1;
|
|
}
|
|
}
|
|
|
|
.header-content-inner p {
|
|
@extend .text-shadow;
|
|
font-size: $font-size-h3 !important;
|
|
font-weight: 400 !important;
|
|
}
|
|
}
|