From 9db3febefd93e72c53757f704f5712174cc304ae Mon Sep 17 00:00:00 2001 From: Lucas Thenert Date: Wed, 18 Jan 2023 10:22:53 +0100 Subject: [PATCH] Erstellung Webseite mit Stylesheet --- kniffel/css/styles.css | 25 +++++++++++++++++++++++++ kniffel/index.html | 28 ++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 kniffel/css/styles.css create mode 100644 kniffel/index.html diff --git a/kniffel/css/styles.css b/kniffel/css/styles.css new file mode 100644 index 0000000..3cb3941 --- /dev/null +++ b/kniffel/css/styles.css @@ -0,0 +1,25 @@ +* { + box-sizing: border-box; + } + + body { + margin: 0; + } + + .header { + padding: 20px; + text-align: center; + } + + .line { + border: 2px solid black; + } + + .column { + text-align: center; + float: left; + width: 50%; + padding: 15px; + } + + \ No newline at end of file diff --git a/kniffel/index.html b/kniffel/index.html new file mode 100644 index 0000000..7a8e9d1 --- /dev/null +++ b/kniffel/index.html @@ -0,0 +1,28 @@ + + + + + + Kniffel + + + +
+

Kniffel

+

Spieler 1 ist an der Reihe

+
+
+
+
+

Spielpan

+
+ +
+

Würfelbereich

+
+ +
+ + + + \ No newline at end of file