From 2b838f95abfece53eee1cb3fca90f77f9c5813df Mon Sep 17 00:00:00 2001 From: Thomas de Roo <2+thomas@noreply.localhost> Date: Mon, 15 Jun 2026 09:37:09 +0200 Subject: [PATCH] Add assets/css/style.css --- assets/css/style.css | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 assets/css/style.css diff --git a/assets/css/style.css b/assets/css/style.css new file mode 100644 index 0000000..a25689b --- /dev/null +++ b/assets/css/style.css @@ -0,0 +1,35 @@ +body { + font-family: Arial, sans-serif; + margin: 0; + background: #f4f6f8; +} + +.container { + max-width: 800px; + margin: auto; + padding: 20px; +} + +.card { + background: white; + padding: 20px; + border-radius: 10px; + margin-bottom: 20px; +} + +input, +button { + width: 100%; + padding: 12px; + margin-top: 10px; + box-sizing: border-box; +} + +button { + cursor: pointer; +} + +h1, +h2 { + margin-top: 0; +} \ No newline at end of file