Files
faveo/code/resources/views/errors/404.blade.php
2015-10-23 14:15:29 +05:30

50 lines
1.5 KiB
PHP

<html>
<head>
<link href='//fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
<style>
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
color: #72C4E2;
display: table;
/*font-size: 100;*/
font-family: "Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;
}
a {
font-size: 150;
color: #FFC907;
}
#body{
font-size:22;
}
.container {
text-align: center;
display: table-cell;
vertical-align: middle;
}
.content {
text-align: center;
display: inline-block;
}
.title {
font-size: 72px;
margin-bottom: 40px;
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<div class="title"><a>404</a> Not Found.</div>
<div class="error-content" id="body">
<h3><i class="fa fa-warning text-yellow"></i> Oops! Page not found.</h3>
<p>
We could not find the page you were looking for.
</p>
</div>
</div>
</div>
</body>
</html>