Skip to content

Commit

Permalink
从 laravel 那里偷来一个首页
Browse files Browse the repository at this point in the history
  • Loading branch information
ninghao committed Jun 23, 2016
1 parent 3b8da39 commit 36fb0a5
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions app/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html>
<head>
<title>hello</title>
<link href='http://fonts.useso.com/css?family=Lato:100' rel='stylesheet'>
<style>
html, body {
height: 100%;
}

body {
margin: 0;
padding: 0;
width: 100%;
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: 96px;
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<div class="title">hello ~</div>
</div>
</div>
</body>
</html>

0 comments on commit 36fb0a5

Please sign in to comment.