diff --git a/index.html b/index.html new file mode 100644 index 0000000..c44f5cb --- /dev/null +++ b/index.html @@ -0,0 +1,62 @@ + + + + + + + + Landing Page + + + + +
+

TU. Landing Page for Service Technicians.

+

+ Dies ist eine Landing Page fuer das einfache auffinden aller + notwendingen Links und Antworten fuer interne und externe Service + Techinker im Haus. bei Themen, die nicht durch diese Homepage + beantwortet werden wenden Sie sich bitte an Philipp Rein von Softbox. +

+
+
+
+
+

+ Interne Service Techniker +

+

+ Interne Service Techinker finden hier alle benoetigten Informationen. +

+
+
+

+ Externe Service Techniker +

+

Dies ist ein dummy text.

+
+
+

Allgemeines FAQ

+ +
+
+
+ + + + diff --git a/layerone/external-tech.html b/layerone/external-tech.html new file mode 100644 index 0000000..c372246 --- /dev/null +++ b/layerone/external-tech.html @@ -0,0 +1,26 @@ + + + + + + + + landing page + + + + + + Hello, external! + + + + diff --git a/layerone/gen-faq.html b/layerone/gen-faq.html new file mode 100644 index 0000000..3588295 --- /dev/null +++ b/layerone/gen-faq.html @@ -0,0 +1,36 @@ + + + + + + + + landing page + + + + + +

Allgemeines FAQ

+

Gen FAQ, ..., umsonst. +

+

+ + + + diff --git a/layerone/internal-tech.html b/layerone/internal-tech.html new file mode 100644 index 0000000..edc2d5b --- /dev/null +++ b/layerone/internal-tech.html @@ -0,0 +1,33 @@ + + + + + + + + landing page + + + + + +

Interne Service Techniker

+

Hier sind Links zu den folgenden Sachen: +

+

+ + + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..3e50f8c --- /dev/null +++ b/style.css @@ -0,0 +1,67 @@ +/* ------------------------------------------------------------ */ +/* ------------------ General --------------------------------- */ +/* ------------------------------------------------------------ */ +body { + background: #000000; + color: #c0c0c0; + font-family: Arial, Helvetica, sans-serif; + font-size: 14pt; + max-width: 800px; + margin: auto; +} + +body h1 { + text-align: center; +} +/* +main { + max-width: 800px; + margin: auto; +} +*/ + +.dark-mode { + color: white; + background: black; +} + +.light-mode { + color: black; + background: white; +} + +a { + color: #10602a; + text-decoration: none; +} + +/* ------------------------------------------------------------ */ + +/* Header formatting */ + +.header { + text-align: center; +} +/* ------------------------------------------------------------ */ +/* ------------------------------------------------------------ */ + +/* Grid with base information */ +.contentBox { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 10px; + /*grid-auto-columns: minmax(10px, auto);*/ +} + +/* ------------------------------------------------------------ */ + +/* Footer formatting */ +footer { + text-align: center; + clear: both; + /*color: white; + padding: 50px; + font-size: 10px;*/ +} + +/* ------------------------------------------------------------ */