From 9d238569e4618fc3eb906554d87f2aa56d0e5bf3 Mon Sep 17 00:00:00 2001 From: Sebastian Ranoszek Date: Thu, 6 Feb 2025 08:46:23 +0000 Subject: [PATCH] Upload files to "/" --- style.css | 78 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 0000000..5f69350 --- /dev/null +++ b/style.css @@ -0,0 +1,78 @@ +body { + margin: 0px; + background-color: darkgray; +} + +.menu-lewy, .menu-prawy { + float: left; + border-bottom: 1px solid black; + height: 200px; + background-color: gray; +} + +.menu-lewy { + width: 70%; + text-align: center; + color: white; +} + +.menu-lewy h1 { + margin-top: 70px; + font-size: 64px; +} + +.menu-prawy { + width: 30%; + justify-content: left; +} + +.content { + clear: both; + width: 400px; + height: 400px; + transform: translate(-50%, -50%); + position: absolute; + left: 50%; + top: 50%; + border: 1.5px solid black; + border-radius: 50px; + background-color: gray; +} + +.content form { + text-align: center; + margin-top: 15%; + color: white; +} + +.content h3 { + color: white; + text-align: center; +} + +.start { + margin-top: 12%; + padding: 25px; + border-radius: 25px; + transition: 0.5s; +} + +.start:hover { + background-color: darkgray; + transition: 0.5s; +} + +.next { + padding: 10px; + border-radius: 15px; + transition: 0.5s; +} + +.next:hover { + background-color: darkgray; + transition: 0.5s; +} + +.content span { + font-size: 20px; +} \ No newline at end of file