site-max/scss/_masthead.scss

64 lines
1.1 KiB
SCSS
Raw Normal View History

2017-07-14 15:51:49 +02:00
// Styling for the masthead
header.masthead {
position: relative;
width: 100%;
2017-07-14 17:20:34 +02:00
overflow: hidden;
2017-07-14 15:51:49 +02:00
min-height: auto;
2017-07-14 17:31:25 +02:00
display: flex;
align-items: center;
2017-07-14 18:13:15 +02:00
justify-content: center;
2017-07-14 15:51:49 +02:00
video {
2017-07-14 16:07:40 +02:00
right: 0;
2017-07-14 15:51:49 +02:00
bottom: 0;
2017-07-14 16:07:40 +02:00
width: 100%;
2017-07-14 15:51:49 +02:00
z-index: -100;
background-size: cover;
overflow: hidden;
}
2017-07-14 18:13:15 +02:00
a {
position: absolute;
bottom: 2rem;
}
#video-sound {
2017-07-24 23:20:00 +02:00
right: 2rem;
2017-07-15 16:27:24 +02:00
}
#youtube-link {
2017-07-24 23:20:00 +02:00
right: 6rem;
2017-07-14 20:30:10 +02:00
}
2017-07-20 13:37:09 +02:00
#fullscreen-video {
2017-07-24 23:20:00 +02:00
left: 2rem;
}
.icone {
width: 1.1rem;
height: 1rem;
}
.fa-2x {
font-size: inherit;
}
.btn-xl {
padding: .5rem 1rem;
2017-07-20 13:37:09 +02:00
}
2017-07-14 15:51:49 +02:00
@media (min-width: 768px) {
2017-07-14 17:24:02 +02:00
height: 100%;
2017-07-24 23:20:00 +02:00
#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;
2017-07-14 15:51:49 +02:00
}
}
}