This commit is contained in:
Dennis Schwerdel
2017-05-04 18:27:37 +02:00
parent 7708a21c28
commit d4206eb4ee
13 changed files with 52 additions and 57 deletions
+5
View File
File diff suppressed because one or more lines are too long
+21
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/public</tt> or edit <tt>/app/data/nginx.conf</tt>.</p>
<br/>
</div>
</div>
</body>
</html>
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

+27
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;
}