Refactoring
This commit is contained in:
@@ -1,26 +1,44 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>The page you were looking for doesn't exist (404)</title>
|
||||
<title>Página não encontrada</title>
|
||||
<meta charset="utf-8" />
|
||||
<style type="text/css">
|
||||
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
||||
body {
|
||||
background-color: #fff;
|
||||
color: #a0a0a0;
|
||||
font-size: 18px;
|
||||
text-align: center;
|
||||
font-family: sans-serif;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
div.dialog {
|
||||
width: 25em;
|
||||
padding: 0 4em;
|
||||
margin: 4em auto 0 auto;
|
||||
border: 1px solid #ccc;
|
||||
border-right-color: #999;
|
||||
border-bottom-color: #999;
|
||||
}
|
||||
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
||||
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
color: #069;
|
||||
line-height: 1.5em;
|
||||
text-shadow: 1px 1px 1px #ccc;
|
||||
}
|
||||
|
||||
h1 i {
|
||||
font-size: 300px !important;
|
||||
}
|
||||
</style>
|
||||
<link rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css'></link>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!-- This file lives in public/404.html -->
|
||||
<div class="dialog">
|
||||
<h1>The page you were looking for doesn't exist.</h1>
|
||||
<p>You may have mistyped the address or the page may have moved.</p>
|
||||
<h1><i class="fa fa-question-circle"></i></h1>
|
||||
<h1>Página não encontrada!</h1>
|
||||
<p>A página que você está tentando acessar não existe.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -1,25 +1,45 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>We're sorry, but something went wrong (500)</title>
|
||||
<title>Erro inesperado</title>
|
||||
<meta charset="utf-8" />
|
||||
<style type="text/css">
|
||||
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
||||
body {
|
||||
background-color: #fff;
|
||||
color: #a0a0a0;
|
||||
font-size: 18px;
|
||||
text-align: center;
|
||||
font-family: sans-serif;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
div.dialog {
|
||||
width: 25em;
|
||||
width: 30em;
|
||||
padding: 0 4em;
|
||||
margin: 4em auto 0 auto;
|
||||
border: 1px solid #ccc;
|
||||
border-right-color: #999;
|
||||
border-bottom-color: #999;
|
||||
}
|
||||
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
||||
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
color: #c33;
|
||||
line-height: 1.5em;
|
||||
text-shadow: 1px 1px 1px #ccc;
|
||||
}
|
||||
|
||||
h1 i {
|
||||
font-size: 300px !important;
|
||||
}
|
||||
</style>
|
||||
<link rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css'></link>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!-- This file lives in public/500.html -->
|
||||
<!-- This file lives in public/404.html -->
|
||||
<div class="dialog">
|
||||
<h1>We're sorry, but something went wrong.</h1>
|
||||
<h1><i class="fa fa-exclamation-triangle"></i></h1>
|
||||
<h1>Erro inesperado!</h1>
|
||||
<p>Você acabou de encontrar um bug no site. Os administradores
|
||||
já foram alertados e devem consertar o problema em breve.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user