First version

This commit is contained in:
Dennis Schwerdel
2016-12-12 12:04:16 +01:00
commit 7708a21c28
15 changed files with 236 additions and 0 deletions

5
page/bootstrap.min.css vendored Normal file

File diff suppressed because one or more lines are too long

21
page/index.html Normal file
View File

@@ -0,0 +1,21 @@
<html>
<head>
<title> Nginx </title>
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<div class="content">
<img src="logo.png" width="200px"/>
<h1> Nginx </h1>
<p>To get started, push some files to <tt>/app/data/page</tt> or edit <tt>/app/data/nginx.conf</tt>.</p>
<br/>
</div>
</div>
</body>
</html>

BIN
page/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

27
page/style.css Normal file
View File

@@ -0,0 +1,27 @@
html, body {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
.wrapper {
display: table;
width: 100%;
height: 100%;
}
.content {
display: table-cell;
width: 100%;
height: 100%;
text-align: center;
vertical-align: middle;
}
pre {
margin: auto;
text-align: left;
width: 400px;
}