Skip to content

Commit 4ce50d3

Browse files
committed
Update 500 error page
1 parent d0f49ef commit 4ce50d3

File tree

1 file changed

+34
-9
lines changed

1 file changed

+34
-9
lines changed

public/500.html

Lines changed: 34 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,41 +4,66 @@
44

55
body {
66
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
7+
background-color: #f0f0f0;
78
}
89

910
h1, h2, h3, h4, h5, h6 {
1011
color: #5e6469;
1112
font-weight: bold;
13+
font-size: 50px;
14+
text-align: center;
15+
margin-top: 30px;
1216
}
1317

1418
p {
1519
margin-bottom: 30px;
1620
}
1721

1822
#container {
19-
width: 750px;
23+
width: 100%;
2024
margin: auto;
21-
margin-top: 150px;
25+
margin-top: 20px;
2226
text-decoration: none;
2327
color: #ff9900;
2428
}
25-
29+
30+
.error {
31+
font-size: 200px;
32+
color: #343131;
33+
margin-top: -30px;
34+
}
35+
36+
.error span {
37+
font-weight: 300;
38+
margin-right: -30px;
39+
}
40+
41+
#badge {
42+
margin-bottom: -40px;
43+
margin-right: -30px;
44+
}
45+
46+
.links {
47+
text-align: center;
48+
margin-top: -100px;
49+
font-size: 30px;
50+
}
51+
2652
a {
2753
color: #ff9900;
2854
margin-right: 20px;
2955
}
3056

57+
3158
</style>
3259
<title>coderwall.com : Errors Suck</title>
3360
</head>
3461
<body>
3562
<div id='container'>
36-
<h2>Coderwall broke, sorry.</h2>
63+
<h2>Coderwall had an issue but hold on to your localhosts, we're looking into it.</h2>
64+
<h2 class="error"><img id="badge" src="https://d3levm2kxut31z.cloudfront.net/assets/badges/100lemming-255ce58645c6a62da473027717042e01.png"> <span>|</span> 500</h2>
3765

38-
<p>
39-
<a href='http://coderwall.com'>back to coderwall</a>
40-
<a href='mailto:support@coderwall.com'>contact support</a>
41-
</p>
66+
<p class="links"><a href="/">Discover</a><a href="/teams">Teams</a><a href="/jobs">Jobs</a> <a href='mailto:support@coderwall.com'>Contact Support</a></p>
4267
</div>
4368
</body>
4469
<script type="text/javascript">
@@ -57,4 +82,4 @@ <h2>Coderwall broke, sorry.</h2>
5782
})();
5883

5984
</script>
60-
</html>
85+
</html>

0 commit comments

Comments
 (0)