mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-01 15:55:36 +01:00
Matthias Kretschmann
6ede38abfc
- start linting scss based on Airbnb style guide - add includePaths to css & js tasks
58 lines
1.1 KiB
SCSS
58 lines
1.1 KiB
SCSS
|
|
.page-404 {
|
|
position: relative;
|
|
background-image: url('/assets/img/fail-cat.gif');
|
|
background-size: cover;
|
|
background-position: center center;
|
|
@include color-overlay;
|
|
|
|
&::before {
|
|
z-index: -1;
|
|
}
|
|
|
|
.header {
|
|
background: none;
|
|
|
|
&::before { display: none; }
|
|
}
|
|
|
|
.header__title {
|
|
margin-bottom: ($spacer * 2);
|
|
padding-bottom: 0;
|
|
|
|
// the bottom line
|
|
&::after {
|
|
content: '';
|
|
height: 1px;
|
|
width: 5rem;
|
|
display: block;
|
|
margin: ($spacer * 2) auto 0;
|
|
background: $brand-main-gray-light;
|
|
}
|
|
}
|
|
|
|
.content--page--markdown {
|
|
text-align: center;
|
|
padding-top: 0;
|
|
//margin-bottom: ($spacer * 6);
|
|
|
|
p { color: #fff; }
|
|
}
|
|
|
|
.footer {
|
|
background: none;
|
|
border-color: rgba(#fff, .2);
|
|
}
|
|
|
|
.footer__copyright {
|
|
border-color: rgba(#fff, .1);
|
|
|
|
&,
|
|
.menu__link { color: rgba(#fff, .6); }
|
|
}
|
|
|
|
.menu--footer {
|
|
a { color: #fff }
|
|
}
|
|
}
|