85 lines
1.8 KiB
SCSS
Executable File
85 lines
1.8 KiB
SCSS
Executable File
//
|
|
// Jumbotron
|
|
// --------------------------------------------------
|
|
|
|
#jumbotron-mask{
|
|
overflow: hidden;
|
|
width: 100%;
|
|
height: $jumbotron-total-height;
|
|
margin-top: $negative-hero-margin;
|
|
}
|
|
|
|
#jumbotron {
|
|
position: relative;
|
|
height: $jumbotron-total-height;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
margin-top: $negative-hero-margin;
|
|
color: $jumbotron-color;
|
|
-webkit-backface-visibility:hidden;
|
|
@include consul-gradient-bg();
|
|
|
|
&.mobile-hero{
|
|
background: transparent image-url('node-hero-pattern.jpg') center center;
|
|
background-size: 320px 320px;
|
|
background: -webkit-image-set( image-url('node-hero-pattern.jpg') 1x, image-url('node-hero-pattern$2x.jpg') 2x );
|
|
}
|
|
|
|
|
|
.jumbotron-dots{
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 632px;
|
|
width: 100%;
|
|
margin-top: $negative-hero-margin;
|
|
background: transparent image-url('hero-dots.png') center $header-height no-repeat;
|
|
}
|
|
|
|
|
|
.container{
|
|
position: relative;
|
|
height: 100%;
|
|
margin-top: $header-height;
|
|
-webkit-backface-visibility:hidden;
|
|
|
|
.jumbo-logo-wrap{
|
|
margin-top: 135px;
|
|
|
|
.jumbo-logo{
|
|
width: 318px;
|
|
height: 316px;
|
|
background: transparent image-url('consul-hero-logo@2x.png') 0 0 no-repeat;
|
|
background-size: 318px 316px;
|
|
z-index: 20;
|
|
}
|
|
}
|
|
|
|
h2{
|
|
margin-top: 175px;
|
|
font-size: 40px;
|
|
line-height: 48px;
|
|
letter-spacing: 1px;
|
|
margin-left: 40px;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (max-width: 992px) {
|
|
#jumbotron .container {
|
|
h2{
|
|
text-align: center;
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
#jumbotron .container {
|
|
h2{
|
|
margin-top: 130px;
|
|
font-size: 32px;
|
|
}
|
|
}
|
|
}
|