From 175ec9442115738199d2bf69a6311d546f3428f6 Mon Sep 17 00:00:00 2001 From: pbg2h23akl Date: Thu, 27 Jun 2024 09:29:23 +0200 Subject: [PATCH] css erstellt --- css/layout.css | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 css/layout.css diff --git a/css/layout.css b/css/layout.css new file mode 100644 index 0000000..1ffdf28 --- /dev/null +++ b/css/layout.css @@ -0,0 +1,39 @@ +*{ + color: white; + font-size: 30px; +} +#spielRaum{ + width: 1000px; + height: 500px; + margin: 0px; + background-color: yellow; + position: relative; +} +body{ + height: 100%; + margin: 0px; +} +#spielFigur1{ + width: 100px; + height: 200px; + background-color: blueviolet; + position: absolute; + bottom: 40px; + left: 200px; +} +#spielFigur2{ + width: 200px; + height: 90px; + background-color: aqua; + position: absolute; + top: 80px; + left: 20px; +} +#spielFigur3{ + width: 220px; + height: 200px; + background-color: red; + position: absolute; + bottom: 30px; + right: 40px; +} \ No newline at end of file