You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.3 KiB
76 lines
1.3 KiB
5 years ago
|
@import "../../src/scss/variables.scss";
|
||
|
@import "../../src/scss/mixins.scss";
|
||
|
|
||
|
.component-header {
|
||
|
width: 100%;
|
||
|
background: $light-grey;
|
||
|
|
||
|
.image {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.title {
|
||
|
display: block;
|
||
|
font-size: $font-50;
|
||
|
font-weight: 300;
|
||
|
line-height: 60px;
|
||
|
color: $blue;
|
||
|
padding: 40px 0 5px 0;
|
||
|
margin: 0;
|
||
|
|
||
|
&:after {
|
||
|
display: block;
|
||
|
content: '';
|
||
|
height: 2px;
|
||
|
margin-top: 20px;
|
||
|
width: 100%;
|
||
|
background: linear-gradient(to right, $blue, $light-grey);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.subtitle {
|
||
|
font-size: $font-18;
|
||
|
font-weight: bold;
|
||
|
line-height: 20px;
|
||
|
color: $dark-grey;
|
||
|
padding: 25px 0;
|
||
|
margin: 0;
|
||
|
text-transform: uppercase;
|
||
|
}
|
||
|
|
||
|
.text {
|
||
|
font-size: $font-18;
|
||
|
font-weight: normal;
|
||
|
line-height: 22px;
|
||
|
padding-bottom: 50px;
|
||
|
margin: 0;
|
||
|
color: $dark-grey;
|
||
|
}
|
||
|
|
||
|
.line {
|
||
|
background: $yellow;
|
||
|
height: 70px;
|
||
|
text-align: center;
|
||
|
|
||
|
.container {
|
||
|
height: 70px;
|
||
|
line-height: 70px;
|
||
|
|
||
|
.line-text {
|
||
|
display: inline-block;
|
||
|
color: $black;
|
||
|
font-size: $font-18;
|
||
|
text-transform: uppercase;
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|
||
|
.code {
|
||
|
display: inline-block;
|
||
|
color: $black;
|
||
|
font-size: $font-32;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|