-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.html
More file actions
94 lines (81 loc) · 2.36 KB
/
error.html
File metadata and controls
94 lines (81 loc) · 2.36 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>Error</title>
<!--
Open Sans (Normal 400) for paragraphs
Open Sans (Normal 400 Italic) for italic text within paragraphs
Open Sans (Bold 700) for bold text within paragraphs and headings
Open Sans (Bold 700 Italic) for italic boold text within paragraphs and headings
http://www.google.com/fonts/#UsePlace:use/Collection:Open+Sans:400italic,700italic,400,700
-->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700' rel='stylesheet' type='text/css'>
<style>
body
{
font-family: 'Open Sans', sans-serif;
font-weight: 400;
margin: 0;
padding: 0;
color: #444444;
}
header
{
width: 100%;
background-color: #F1F1F1;
margin: 0;
padding: 40px 0 10px 0;
border-bottom: 1px solid #CCCCCC;
}
h1
{
font-family: 'Open Sans', sans-serif;
font-weight: 700;
font-size: 48px;
color: #222222;
margin: 0px auto 0px auto;
}
.error
{
color: red;
}
main
{
margin: 0px auto 0px auto;
font-size: 16px;
}
a
{
color: #0099FF;
text-decoration: none;
border-bottom: 1px solid #0099FF;
}
a:hover
{
color: #FF9900;
border-bottom: 1px solid #FF9900;
}
p {
font-size: 16px;
line-height: 1.5em;
margin: 10px;
}
@media only screen and (min-width: 320px) {
main {width: 90%;}
h1 {width: 90%;}
}
@media only screen and (min-width: 960px) {
main {width: 960px;}
h1 {width: 960px;}
}
</style>
</head>
<body>
<header>
<h1>An <span class="error">error</span> has occurred</h1>
</header>
<main role="main">
<p>Sorry, an <span class="error">error</span> has occurred and the administrators have been informed. Please visit <a href="/">the homepage</a> to try again!</p>
</main>
</body>
</html>