64 lines
1.1 KiB
SCSS
64 lines
1.1 KiB
SCSS
// Styling for the masthead
|
|
header.masthead {
|
|
position: relative;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
min-height: auto;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
video {
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
z-index: -100;
|
|
background-size: cover;
|
|
overflow: hidden;
|
|
}
|
|
a {
|
|
position: absolute;
|
|
bottom: 2rem;
|
|
}
|
|
#video-sound {
|
|
right: 2rem;
|
|
}
|
|
#youtube-link {
|
|
right: 6rem;
|
|
}
|
|
#fullscreen-video {
|
|
left: 2rem;
|
|
}
|
|
.icone {
|
|
width: 1.1rem;
|
|
height: 1rem;
|
|
}
|
|
.fa-2x {
|
|
font-size: inherit;
|
|
}
|
|
.btn-xl {
|
|
padding: .5rem 1rem;
|
|
}
|
|
@media (min-width: 768px) {
|
|
height: 100%;
|
|
#video-sound {
|
|
right: 4rem;
|
|
}
|
|
#youtube-link {
|
|
right: 9rem;
|
|
}
|
|
#fullscreen-video {
|
|
left: 4rem;
|
|
}
|
|
.icone {
|
|
width: 2.2rem;
|
|
height: 2rem;
|
|
}
|
|
.fa-2x {
|
|
font-size: 2em;
|
|
}
|
|
.btn-xl {
|
|
padding: 15px 30px;
|
|
}
|
|
}
|
|
}
|