Skip to content

Commit 44b139a

Browse files
committed
added 500 error page
1 parent dc665a2 commit 44b139a

1 file changed

Lines changed: 31 additions & 14 deletions

File tree

public/500.html

Lines changed: 31 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,42 @@
22
<html>
33
<head>
44
<title>We're sorry, but something went wrong (500)</title>
5-
<style type="text/css">
6-
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7-
div.dialog {
8-
width: 25em;
9-
padding: 0 4em;
10-
margin: 4em auto 0 auto;
11-
border: 1px solid #ccc;
12-
border-right-color: #999;
13-
border-bottom-color: #999;
5+
<style>
6+
body {
7+
background-color: white;
8+
}
9+
.head {
10+
background-color: #253e59;
11+
width: 100%;
12+
/*height: 3em;*/
1413
}
15-
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
14+
#content {
15+
background-color: white;
16+
text-align: center;
17+
border-top-color: #693;
18+
border-color: #999;
19+
border-style: solid;
20+
border-width: 1px;
21+
}
22+
a {
23+
color: white;
24+
font-weight: bold;
25+
border-radius: 1em;
26+
font-size: 2em;
27+
text-decoration: none;
28+
}
29+
1630
</style>
1731
</head>
1832

1933
<body>
20-
<!-- This file lives in public/500.html -->
21-
<div class="dialog">
22-
<h1>We're sorry, but something went wrong.</h1>
23-
<p>We've been notified about this issue and we'll take a look at it shortly.</p>
34+
<div class="head">
35+
<a href="http://hackety-hack.com"><img height="50px" src="http://hackety-hack.com/assets/logo-star.png" /></a> <a href="http://hackety-hack.com/questions">Questions</a>
2436
</div>
37+
<div id="content">
38+
<h2>We're sorry, but something went wrong.</h2>
39+
<p>We've been notified about this issue and we'll take a look at it shortly.</p>
40+
</div>
41+
2542
</body>
2643
</html>

0 commit comments

Comments
 (0)