commit 3d1dbae5b1a611e4d778b8619de5823b51e0c174 Author: Anton Lydike Date: Thu Apr 23 20:52:54 2020 +0200 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/README.md b/README.md new file mode 100644 index 0000000..b0f3440 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# mumble.datenvorr.at website + +Diese webseite soll leute auf die funktionsweisen von unserem Mumble-Server hinweisen. \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..74710fb --- /dev/null +++ b/index.html @@ -0,0 +1,38 @@ + + + + + + Mumble auf Datenvorr.ar + + + + + + +
+

Was mach ich denn jetzt?

+

Wenn du auf den Mumble server wolltest, brauchst du dafür den Mumble Client. Mumble ist ähnlich wie Teamspeak, nur quelloffen.

+
+
+
+
+
+ +

Und was wenn nicht?

+

???

+ +
+ + + \ No newline at end of file diff --git a/logo.png b/logo.png new file mode 100644 index 0000000..2b8d6b8 Binary files /dev/null and b/logo.png differ diff --git a/logo2.png b/logo2.png new file mode 100644 index 0000000..a21cee4 Binary files /dev/null and b/logo2.png differ diff --git a/main.css b/main.css new file mode 100644 index 0000000..001b6fb --- /dev/null +++ b/main.css @@ -0,0 +1,58 @@ +html, body { + margin: 0px; + padding: 0px; + min-height: 100vh; + min-width: 100vw; + display: flex; + flex-direction: column; + flex-grow: 1; + font-family: 'Open Sans', sans-serif; + align-items: stretch; +} + +.nav-container, main, footer { + max-width: 1080px; + width: 70%; + margin: 0px auto; + display: block; +} + +.nav-container { + display: flex; + flex-direction: row; +} + +nav { + border-bottom: 1px solid #ddd; + background: rgba(0,0,0,.08); + padding: 32px 0; +} + +.mumble-logo { + background-size: contain; + height: 113px; + margin-right: 32px; +} + +main { + margin: 16px auto; + flex-grow: 1; +} + +.italic { + font-style: italic; +} + +@media(max-width: 600px) { + nav, main, footer { + width: calc(100vw - 16px); + } +} + +h1 { + font-weight: 400; +} + +h2, h3 { + font-weight: 300; +} \ No newline at end of file