feat(aio): page not found layout and designs (#16089)

Add 404 svg image
h1 custom styling

PR Close #16089
This commit is contained in:
Stefanie Fluin
2017-04-16 20:19:39 -07:00
committed by Miško Hevery
parent 1259fe75c9
commit 9f66c9c1d1
5 changed files with 42 additions and 15 deletions

View File

@ -27,6 +27,9 @@ l-relative {
flex-wrap: wrap;
}
.flex-center {
justify-content: center;
}
.flex-center {
display: flex;
justify-content: center;

View File

@ -8,4 +8,5 @@
@import 'top-menu';
@import 'marketing-layout';
@import 'footer';
@import 'layout-global';
@import 'layout-global';
@import 'not-found';

View File

@ -0,0 +1,21 @@
#file-not-found {
padding: 3rem 3rem 3rem;
}
.nf-container {
align-items: center;
padding: 32px;
}
.nf-response {
margin: 32px;
height: 100%;
flex-direction: column;
h1 {
font-size: 48px;
color: $blue;
text-transform: uppercase;
margin: 8px 0;
}
}