mirror of
https://github.com/adulau/foo.be.git
synced 2024-11-07 11:26:25 +00:00
28 lines
563 B
SCSS
28 lines
563 B
SCSS
/* ==========================================================================
|
|
Header
|
|
========================================================================== */
|
|
|
|
.c-header {
|
|
padding-top: 14.1rem; // 75px
|
|
padding-bottom: 7.5rem; // 75px
|
|
padding-right: 2.5rem;
|
|
padding-left: 2.5rem;
|
|
background: $t-theme;
|
|
}
|
|
|
|
.c-header__title {
|
|
position: relative;
|
|
@include ff--mono(500);
|
|
@include fs--title;
|
|
color: $c__white;
|
|
|
|
&:after {
|
|
margin-left: .5rem;
|
|
color: rgba(#fff, .5);
|
|
content: '¬';
|
|
}
|
|
|
|
span {
|
|
color: rgba(#fff, .5);
|
|
}
|
|
}
|