forked from creativecommons/ccos-website-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
45 lines (45 loc) · 1.01 KB
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{% extends "layout.html" %}
{% block body %}
<style>
.page-title
{
border-bottom-style:none !important;
}
.section{
padding: 4rem 2rem;
}
.section .error{
font-weight:bold;
font-size: 10rem;
color: #ed592f;
text-shadow:
1px 1px 1px #000,
2px 2px 1px #000,
3px 3px 1px #000,
4px 4px 1px #000,
5px 5px 1px #000,
6px 6px 1px #000,
7px 7px 1px #000,
8px 8px 1px #000;
}
.page{
margin-bottom: 1rem;
font-size: 20px;
font-weight: 600;
color: #444;
}
.btn
{
margin:6px;
font-weight:bold;
}
</style>
<div class="section text-center">
<h1 class="error">404</h1>
<h2 style="margin:0px">Page Not Found!</h2>
<div class="page">Sorry. The page you are looking for doesn't exist.</div>
<a class="btn text-white" href="https://opensource.creativecommons.org/" style="background-color:#ed592f">Return Home</a>
<a class="btn text-white" href="https://creativecommons.org/about/contact/" style="background-color:#ed592f">Contact Us</a>
</div>
<!-- Creative commons -->
{% endblock %}