vd/app/Domains/Welcome/Resources/views/welcome.blade.php
2018-11-05 09:26:30 +08:00

50 lines
1.1 KiB
PHP

<!DOCTYPE html>
<html lang="{{ config('app.locale') }}">
<head>
<title>Dipper</title>
<style>
html,
body {
height: 100%;
}
body {
margin: 0;
padding: 0;
width: 100%;
background: #181818;
display: table;
font-size: 12px;
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
color: #a0a0a0;
}
.container {
display: table-cell;
vertical-align: middle;
}
.content {
text-align: center;
}
.title {
font-weight: 100;
font-size: 48px;
margin-bottom: 40px;
color: #fff;
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<div class="title">Dipper</div>
<div class="details">©福建省福信富通网络科技股份有限公司 版权所有 Copyright (C)2010-2018</div>
</div>
</div>
</body>
</html>