From 8055a7fb713079c82d2a91e5759eb7ccc0a2f789 Mon Sep 17 00:00:00 2001 From: DaanoGames Date: Sat, 12 Apr 2025 12:59:33 +0200 Subject: [PATCH] added css --- static/style.css | 22 ++++++++++++++++++++++ templates/base_template.html | 16 ++++++++-------- templates/dashboard.html | 22 +++++++++++++++++++--- 3 files changed, 49 insertions(+), 11 deletions(-) create mode 100644 static/style.css diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..b912c98 --- /dev/null +++ b/static/style.css @@ -0,0 +1,22 @@ +body { + background-color: lightslategray; +} + +.grid-container { + display: grid; + grid-template-columns: auto auto auto; + gap: 20px; + background-color: lightslategray; + padding-top: 20px; + margin-left: 10%; + margin-right: 10%; +} + +.grid-container > div { + text-align: center; + height: 100px; + padding-top: 5px; + border: 2px solid black; + border-radius: 10px; + background-color: whitesmoke; +} \ No newline at end of file diff --git a/templates/base_template.html b/templates/base_template.html index ae92dc5..ba26656 100644 --- a/templates/base_template.html +++ b/templates/base_template.html @@ -4,24 +4,24 @@ - + {% block title %}{% endblock %} -