summaryrefslogtreecommitdiffhomepage
path: root/debian/example
diff options
context:
space:
mode:
Diffstat (limited to 'debian/example')
-rw-r--r--debian/example/banner256.pngbin0 -> 5647 bytes
-rw-r--r--debian/example/favicon.icobin0 -> 2238 bytes
-rw-r--r--debian/example/index.html22
-rw-r--r--debian/example/reichwein.css51
4 files changed, 73 insertions, 0 deletions
diff --git a/debian/example/banner256.png b/debian/example/banner256.png
new file mode 100644
index 0000000..89efb4f
--- /dev/null
+++ b/debian/example/banner256.png
Binary files differ
diff --git a/debian/example/favicon.ico b/debian/example/favicon.ico
new file mode 100644
index 0000000..e8cbddb
--- /dev/null
+++ b/debian/example/favicon.ico
Binary files 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;
+ }
+}