|
@@ -1,46 +1,61 @@
|
|
|
<!DOCTYPE html>
|
|
|
-<html>
|
|
|
+<html lang="en">
|
|
|
<head>
|
|
|
- <title>Be right back.</title>
|
|
|
+ <meta charset="utf-8">
|
|
|
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
- <link href="https://fonts.googleapis.com/css?family=Lato:100" rel="stylesheet" type="text/css">
|
|
|
+ <title>Laravel</title>
|
|
|
|
|
|
+ <!-- Fonts -->
|
|
|
+ <link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet" type="text/css">
|
|
|
+
|
|
|
+ <!-- Styles -->
|
|
|
<style>
|
|
|
html, body {
|
|
|
- height: 100%;
|
|
|
+ background-color: #fff;
|
|
|
+ color: #636b6f;
|
|
|
+ font-family: 'Raleway', sans-serif;
|
|
|
+ font-weight: 100;
|
|
|
+ height: 100vh;
|
|
|
+ margin: 0;
|
|
|
}
|
|
|
|
|
|
- body {
|
|
|
- margin: 0;
|
|
|
- padding: 0;
|
|
|
- width: 100%;
|
|
|
- color: #B0BEC5;
|
|
|
- display: table;
|
|
|
- font-weight: 100;
|
|
|
- font-family: 'Lato', sans-serif;
|
|
|
+ .full-height {
|
|
|
+ height: 100vh;
|
|
|
}
|
|
|
|
|
|
- .container {
|
|
|
- text-align: center;
|
|
|
- display: table-cell;
|
|
|
- vertical-align: middle;
|
|
|
+ .flex-center {
|
|
|
+ align-items: center;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .position-ref {
|
|
|
+ position: relative;
|
|
|
+ }
|
|
|
+
|
|
|
+ .top-right {
|
|
|
+ position: absolute;
|
|
|
+ right: 10px;
|
|
|
+ top: 18px;
|
|
|
}
|
|
|
|
|
|
.content {
|
|
|
text-align: center;
|
|
|
- display: inline-block;
|
|
|
}
|
|
|
|
|
|
.title {
|
|
|
- font-size: 72px;
|
|
|
- margin-bottom: 40px;
|
|
|
+ font-size: 84px;
|
|
|
}
|
|
|
</style>
|
|
|
</head>
|
|
|
<body>
|
|
|
- <div class="container">
|
|
|
+ <div class="flex-center position-ref full-height">
|
|
|
<div class="content">
|
|
|
- <div class="title">Be right back.</div>
|
|
|
+ <div class="title">
|
|
|
+ Be right back.
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</body>
|