forked from PrestaShop/PrestaShop
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror500.html
More file actions
Latest commit
96 lines (84 loc) · 2.45 KB
/
Copy patherror500.html
File metadata and controls
96 lines (84 loc) · 2.45 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
95
96
<!DOCTYPE html>
<htmllang="en">
<head>
<title>500 Server Error</title>
<metahttp-equiv="Content-Type" content="text/html; charset=utf-8" />
<metaname="description" content="This store is powered by PrestaShop" />
<style>
::-moz-selection {
background:#b3d4fc;
text-shadow: none;
}
::selection {
background:#b3d4fc;
text-shadow: none;
}
html {
padding:30px10px;
font-size:16px;
line-height:1.4;
color:#737373;
background:#f0f0f0;
-webkit-text-size-adjust:100%;
-ms-text-size-adjust:100%;
}
html,
input {
font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
}
body {
max-width:600px;
_width:600px;
padding:30px20px50px;
border:1px solid #b3b3b3;
border-radius:4px;
margin:0 auto;
box-shadow:01px10px#a7a7a7, inset 01px0#fff;
background:#fcfcfc;
}
h1 {
margin:010px;
font-size:50px;
text-align: center;
}
h1span {
color:#bbb;
}
h2 {
color:#D35780;
margin:010px;
font-size:40px;
text-align: center;
}
h2span {
color:#bbb;
font-size:60px;
}
h3 {
margin:1.5em00.5em;
}
p {
margin:1em0;
}
ul {
padding:00040px;
margin:1em0;
}
.container {
max-width:380px;
_width:380px;
margin:0 auto;
}
input::-moz-focus-inner {
padding:0;
border:0;
}
</style>
</head>
<body>
<divclass="container">
<h2><span>500</span> Server Error</h2>
<p>Oops, something went wrong.<br/><br/>Try to refresh this page or feel free to contact us if the problem persists.</p>
</div>
</body>
</html>