This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
forked from gobuffalo/buffalo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.prod.html
70 lines (60 loc) · 1.55 KB
/
error.prod.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
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
<!DOCTYPE html>
<html>
<head>
<style>
h1,
p.powered {
text-align: center
}
body {
background: #ECECEC;
padding-top: 25px;
font-family: helvetica neue, helvetica, sans-serif;
color: #333
}
.card {
box-sizing: border-box;
width: 440px;
min-width: 270px;
margin: 0 auto;
padding: 10px 25px 35px 10px;
background: #FFF;
box-shadow: 0 2px 4px 0 rgba(185, 185, 185, .28);
border-radius: 5px
}
.card p {
max-width: 320px;
margin: 15px auto
}
h1 {
font-size: 22px
}
hr {
border: .5px solid #D72727;
width: 180px
}
p.powered {
font-family: HelveticaNeue-Light;
font-size: 12px;
color: #333
}
@media (max-width:600px) {
.card {
width: 100%;
display: block
}
}
</style>
</head>
<body>
<div class="container">
<div class="card">
<h1>We're Sorry!</h1>
<hr>
<p>It looks like something went wrong! Don't worry, we are aware of the problem and are looking into it.</p>
<p>Sorry if this has caused you any problems. Please check back again later.</p>
</div>
<p class="powered">powered by <a href="https://gobuffalo.io">gobuffalo.io</a></p>
</div>
</body>
</html>