Skip to content

Commit

Permalink
error pages & git keeps
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbhosale committed Jun 26, 2016
1 parent 66cc9f9 commit c8a7bdf
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Installs/migrations/.gitkeep
@@ -0,0 +1 @@

47 changes: 47 additions & 0 deletions src/Installs/resources/views/errors/503.blade.php
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html>
<head>
<title>Be right back.</title>

<link href="https://fonts.googleapis.com/css?family=Lato:100" rel="stylesheet" type="text/css">

<style>
html, body {
height: 100%;
}
body {
margin: 0;
padding: 0;
width: 100%;
color: #B0BEC5;
display: table;
font-weight: 100;
font-family: 'Lato';
}
.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">Be right back.</div>
</div>
</div>
</body>
</html>
1 change: 1 addition & 0 deletions src/Installs/resources/views/vendor/.gitkeep
@@ -0,0 +1 @@

0 comments on commit c8a7bdf

Please sign in to comment.