mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-01 15:55:36 +01:00
56 lines
1022 B
SCSS
56 lines
1022 B
SCSS
|
|
.page-404 {
|
|
position: relative;
|
|
background-image: url('/assets/img/fail-cat.gif');
|
|
background-size: cover;
|
|
background-position: center center;
|
|
@extend .color-overlay;
|
|
min-height: 100vh;
|
|
|
|
&: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 auto;
|
|
background: $gray-lighter;
|
|
}
|
|
}
|
|
|
|
.content--page--markdown {
|
|
text-align: center;
|
|
padding-top: 0;
|
|
margin-bottom: ($spacer * 6);
|
|
|
|
p { color: #fff; }
|
|
}
|
|
|
|
.footer {
|
|
background: none;
|
|
}
|
|
|
|
.footer__copyright {
|
|
&,
|
|
.menu__link { color: rgba(#fff, .6); }
|
|
}
|
|
|
|
.menu--footer {
|
|
a { color: #fff }
|
|
}
|
|
}
|