123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <!DOCTYPE html>
- <html>
- <head lang="en">
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- @section('meta')
- @show
- <title>@yield('code') error</title>
- <!-- Fonts -->
- <link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet" type="text/css">
- <!-- Styles -->
- <style>
- html, body {
- background-color: #fff;
- color: #636b6f;
- font-family: 'Raleway', sans-serif;
- font-weight: 100;
- height: 100vh;
- margin: 0;
- }
- .full-height {
- height: 100vh;
- }
- .flex-center {
- align-items: center;
- display: flex;
- justify-content: center;
- }
- .position-ref {
- position: relative;
- }
- .content {
- text-align: center;
- font-family: "Microsoft YaHei";
- }
- .title {
- font-size: 84px;
- }
- .m-b-md {
- margin-bottom: 30px;
- }
- a {
- color: blue;
- text-decoration: none;
- }
- </style>
- </head>
- <body>
- <div class="flex-center position-ref full-height">
- <div class="content">
- <div class="title m-b-md">
- @yield('code') error
- </div>
- @yield('text','错误描述内容')
- </div>
- </div>
- </body>
- </html>
|