2018-03-25 18:22:59 +00:00
|
|
|
/* License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later */
|
2018-03-25 17:30:42 +00:00
|
|
|
@import 'mixins';
|
|
|
|
|
|
|
|
.pageTitle {
|
|
|
|
position: absolute;
|
|
|
|
top: -55px;
|
|
|
|
font-size: 32px;
|
|
|
|
} // -55px in relation to .container
|
|
|
|
.pageTitle i {
|
|
|
|
margin-right: 5px;
|
|
|
|
vertical-align: text-bottom;
|
|
|
|
font-size: 27px;
|
|
|
|
}
|
|
|
|
.pageTitle--centered {
|
|
|
|
@extend .pageTitle;
|
|
|
|
left: auto;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin backgroundColor {
|
|
|
|
height: 500px;
|
|
|
|
width: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
@include opacity(0.5);
|
|
|
|
}
|
|
|
|
.backgroundColor {
|
|
|
|
@include backgroundColor;
|
|
|
|
@include gradient(top, $sky, white);
|
|
|
|
}
|
|
|
|
.backgroundColor--green {
|
|
|
|
@include backgroundColor;
|
|
|
|
@include gradient(top, rgba($grass, 0.6), white);
|
|
|
|
}
|