diff --git a/static/src/less/style.less b/static/src/less/style.less index 8114701..84b520d 100644 --- a/static/src/less/style.less +++ b/static/src/less/style.less @@ -76,4 +76,32 @@ footer { margin-top: 15px; } } -/* @end Footer */ \ No newline at end of file +/* @end Footer */ + +/* @group 404 */ +.four-o-four { + .header { + height: 15vh; + font-size: 35px; + text-align: center; + } + .image { + background: url(../img/ninjas.png); + background-size: cover; + background-position: center; + height: 70vh; + } + .message { + height: 15vh; + color: white; + background-color: #232323; + text-align: center; + } + .move-on { + text-align: center; + background-color: #333; + color: white; + height: 5vh; + } +} +/* @end 404 */ \ No newline at end of file diff --git a/templates/core/404.html b/templates/core/404.html index 12337ba..701d257 100644 --- a/templates/core/404.html +++ b/templates/core/404.html @@ -1,27 +1,23 @@ {% extends 'base.html' %} -{% block htmltitle %}Oh no, There's nothing here!{% endblock %} +{% block htmltitle %}404 - It's not here!{% endblock %} -{% block headercontent %} -
-

404 - Page not found

-
-
-

The page you were looking for could not be found.

-

Don't worry, I've sent these people to to go and find it. Rest assured it will be found!

-
-{% endblock %} - -{% block bodyClass %}404{% endblock %} +{% block bodyClass %}four-o-four{% endblock %} {% block content %} -
+
+

Uh Oh - There's nothing here!

+
+
+
-

There's nothing here!

+

The page you were looking for could not be found.

+

Don't worry, I've send these people to go and find it. Rest assured it will be found.

-
+
+

Nope, there's nothing more down here either. Why not Go back or Return Home

{% endblock %} \ No newline at end of file