Client - add 404 error page

This commit is contained in:
Sam
2021-08-07 14:28:48 +02:00
parent ef6649a5dc
commit 0876373609
11 changed files with 139 additions and 0 deletions

View File

@ -31,4 +31,26 @@ a {
padding-right: 15px;
max-width: $container-width;
width: 100%;
}
button {
border: solid 1px var(--app-color);
border-radius: 0;
box-shadow: 2px 2px 2px var(--app-shadow-color);
color: var(--app-color);
padding: 6px 14px;
&:hover {
background: var(--app-color);
color: #FFFFFF;
}
&:active {
box-shadow: 2px 0 2px var(--app-shadow-color);
transform: translateY(2px);
}
}
.upper {
text-transform: uppercase;
}

View File

@ -8,4 +8,6 @@
--footer-background-color: #FFFFFF;
--footer-color: #8b8c8c;
--app-shadow-color: lightgrey;
}