Retrospring/app/javascript/styles/components/_jumbotron.scss

35 lines
447 B
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;
}
}
&__content {
width: 100%;
align-self: center;
}
}