From f4b6b3b7bb2be6ec8aa6b694d9ff39a774f01da7 Mon Sep 17 00:00:00 2001
From: Roland Reichwein <mail@reichwein.it>
Date: Thu, 11 Feb 2021 14:21:24 +0100
Subject: Fix default config file to deliver default web page

---
 debian/example/banner256.png | Bin 0 -> 5647 bytes
 debian/example/favicon.ico   | Bin 0 -> 2238 bytes
 debian/example/index.html    |  22 +++++++++++++++++++
 debian/example/reichwein.css |  51 +++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 73 insertions(+)
 create mode 100644 debian/example/banner256.png
 create mode 100644 debian/example/favicon.ico
 create mode 100644 debian/example/index.html
 create mode 100644 debian/example/reichwein.css

(limited to 'debian/example')

diff --git a/debian/example/banner256.png b/debian/example/banner256.png
new file mode 100644
index 0000000..89efb4f
Binary files /dev/null and b/debian/example/banner256.png differ
diff --git a/debian/example/favicon.ico b/debian/example/favicon.ico
new file mode 100644
index 0000000..e8cbddb
Binary files /dev/null and b/debian/example/favicon.ico differ
diff --git a/debian/example/index.html b/debian/example/index.html
new file mode 100644
index 0000000..758e8b8
--- /dev/null
+++ b/debian/example/index.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html>
+	<head>
+		<meta charset="utf-8"/>
+		<meta name="viewport" content="width=device-width, initial-scale=1">
+		<meta name="keywords" content="Reichwein, webserver">
+		<title>Webserver</title>
+		<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/>
+		<link rel="stylesheet" type="text/css" href="reichwein.css"/>
+	</head>
+	<body>
+		<div class="page">
+			<h1><img class="banner" src="banner256.png" alt="Reichwein.IT"/> Webserver</h1>
+
+			<div>
+			It works!
+			</div>
+
+		</div>
+	</body>
+</html>
+
diff --git a/debian/example/reichwein.css b/debian/example/reichwein.css
new file mode 100644
index 0000000..f682af1
--- /dev/null
+++ b/debian/example/reichwein.css
@@ -0,0 +1,51 @@
+body {
+	font-family: "sans-serif";
+	font-weight: 300;
+}
+
+figcaption {
+	text-align: center;
+	font-size: 8px;
+	color: #808080;
+}
+
+figure {
+	display: inline-block;
+}
+
+.mobile {
+	width: 300px;
+	border-width: 80px 15px 80px 15px;
+       	border-style: solid;
+	border-radius: 30px;
+	border-color: #000000;
+}
+
+.logo {
+	display: block;
+	margin: 0 auto;
+}
+
+.screenshot {
+	width: 400px;
+	border: 2px solid;
+	border-color: #8888AA;
+}
+
+img.banner {
+	vertical-align: -5px;
+}
+
+@media only screen and (min-width: 1px) and (max-width: 630px) {
+}
+
+@media only screen and (min-width: 631px) and (max-width: 950px) {
+}
+
+@media only screen and (min-width: 951px) {
+	div.page {
+		max-width: 950px;
+		width: 100%;
+		margin: 0 auto;
+	}
+}
-- 
cgit v1.2.3