Retrospring/app/assets/stylesheets/components/_jumbotron.scss

74 lines
1.1 KiB
SCSS
Raw Normal View History

2020-04-26 15:59:53 -07:00
.jumbotron {
$this: &;
display: flex;
background-color: var(--primary);
color: RGB(var(--primary-text));
2020-04-26 15:59:53 -07:00
text-align: center;
2020-05-06 18:39:02 -07:00
border-radius: 0;
2020-04-26 15:59:53 -07:00
h1,
h2,
h3,
h4,
h5,
h6 {
color: RGB(var(--primary-text));
2020-04-26 15:59:53 -07:00
}
a:not(.btn) {
color: RGB(var(--primary-text));
2020-04-26 15:59:53 -07:00
opacity: 0.6;
&:hover {
opacity: 1;
}
.btn {
opacity: 1;
}
}
&__scroller {
display: block;
position: absolute;
bottom: 0;
margin: 0 auto;
padding: 20px;
text-align: center;
z-index: 1000;
font-size: 32px;
width: 100%;
}
&__content {
width: 100%;
align-self: center;
}
&--frontpage {
margin-top: -50px;
height: 100vh;
}
&--particles {
padding: 0px;
overflow: hidden;
position: relative;
width: 100%;
#{$this}__particles {
position: absolute;
width: 100%;
height: 100%;
}
#{$this}__content {
position: relative;
top: 0;
padding-top: 48px;
padding-bottom: 48px;
padding-left: 30px;
padding-right: 30px;
}
}
}