1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <!--
- Bootstrap based HttpErrorPages
- License: MIT X11 License
- https://github.com/AndiDittrich/HttpErrorPages
- -->
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
-
- <title>We've got some trouble | 404 - Resource not found</title>
-
- <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" />
-
- <style type="text/css">
- html,body {
- width: 100%;
- height: 100%;
- background-color: #21232a;
- }
-
- body {
- color: #fff;
- text-align: center;
- text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
- padding: 0px;
- min-height: 100%;
- -webkit-box-shadow: inset 0 0 100px rgba(0, 0, 0, .8);
- box-shadow: inset 0 0 100px rgba(0, 0, 0, .8);
- display: table;
- }
- .lead {
- color: #c0c0c0;
- }
- .cover {
- display: table-cell;
- vertical-align: middle;
- padding: 0 20px;
- }
- </style>
- </head>
- <body>
- <div class="cover">
- <h1>Resource not found <small>Error 404</small></h1>
- <p class="lead">The requested resource could not be found but may be available again in the future.</p>
- </div>
-
- </body>
- </html>
|