Add static maintenance page.
This commit is contained in:
commit
9ac791fbf5
5 changed files with 72 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
.*.swp
|
BIN
gnuviech-logo.png
Normal file
BIN
gnuviech-logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.3 KiB |
22
index.html
Normal file
22
index.html
Normal file
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>System steht wegen Wartungsarbeiten nicht zur Verfügung</title>
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-inverse navbar-static-top">
|
||||
<div class="container">
|
||||
<div class="navbar-header">
|
||||
<img id="logo" src="gnuviech-logo.png" alt="gnuviech IT-Services" width="230" height="101">
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container">
|
||||
<h1>Wartungsarbeiten</h1>
|
||||
<img src="tools-server-130px.png" style="float:left" width="106" height="130" alt=""/>
|
||||
<p>Das System steht aufgrund von Wartungsarbeiten momentan nicht zur Verfügung, bitte haben Sie etwas Geduld und versuchen Sie es in Kürze noch einmal.</p>
|
||||
<p style="text-align: right">Vielen Dank für Ihr Verständnis!</p> </div>
|
||||
</body>
|
||||
</html>
|
49
style.css
Normal file
49
style.css
Normal file
|
@ -0,0 +1,49 @@
|
|||
body {
|
||||
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
|
||||
font-size: 14px;
|
||||
line-height: 1.42857143;
|
||||
color: #333;
|
||||
padding:0;
|
||||
margin:0;
|
||||
}
|
||||
@media(min-width:768px) {
|
||||
.container {
|
||||
width:750px;
|
||||
}
|
||||
}
|
||||
@media(min-width:992px) {
|
||||
.container {
|
||||
width:970px;
|
||||
}
|
||||
}
|
||||
@media(min-width:1200px) {
|
||||
.container {
|
||||
width:1170px;
|
||||
}
|
||||
}
|
||||
.container {
|
||||
padding-right:15px;
|
||||
padding-left:15px;
|
||||
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
}
|
||||
.navbar-inverse {
|
||||
background-color: #009688;
|
||||
border-color: #009688;
|
||||
color: rgba(255,255,255,0.84);
|
||||
}
|
||||
.navbar {
|
||||
min-height: 50px;
|
||||
margin-bottom: 20px;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
h1 {
|
||||
color: rgb(8, 150, 136);
|
||||
font-size:36px;
|
||||
font-weight:500;
|
||||
line-height: 1.1;
|
||||
}
|
||||
p {
|
||||
margin: 0 0 10px;
|
||||
}
|
BIN
tools-server-130px.png
Normal file
BIN
tools-server-130px.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
Loading…
Reference in a new issue