1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-01 15:55:36 +01:00
site/_src/_assets/styles/_page-404.scss

58 lines
1.1 KiB
SCSS
Raw Normal View History

.page-404 {
2016-02-13 23:58:50 +01:00
position: relative;
background-image: url('/assets/img/fail-cat.gif');
background-size: cover;
background-position: center center;
@extend .color-overlay;
&:before {
z-index: -1;
}
2016-02-08 16:14:23 +01:00
2016-02-13 23:58:50 +01:00
.header {
background: none;
2016-02-14 14:23:40 +01:00
2016-02-13 23:58:50 +01:00
&:before { display: none; }
2016-02-08 16:14:23 +01:00
}
2016-02-13 23:58:50 +01:00
2016-02-14 14:23:40 +01:00
.header__title {
2016-02-14 14:43:12 +01:00
margin-bottom: ($spacer * 2);
2016-02-14 14:23:40 +01:00
padding-bottom: 0;
// the bottom line
&:after {
content: "";
height: 1px;
width: 5rem;
display: block;
margin: ($spacer * 2) auto 0 auto;
background: $gray-lighter;
}
}
2016-02-13 23:58:50 +01:00
.content--page--markdown {
text-align: center;
2016-02-13 23:58:50 +01:00
padding-top: 0;
2016-02-14 14:43:12 +01:00
//margin-bottom: ($spacer * 6);
2016-02-14 14:23:40 +01:00
p { color: #fff; }
}
.footer {
background: none;
2016-02-14 15:06:01 +01:00
border-color: rgba(#fff, .2);
2016-02-14 14:23:40 +01:00
}
.footer__copyright {
2016-02-14 15:06:01 +01:00
border-color: rgba(#fff, .1);
2016-02-14 14:23:40 +01:00
&,
.menu__link { color: rgba(#fff, .6); }
2016-02-13 23:58:50 +01:00
}
.menu--footer {
a { color: #fff }
}
}