From 21428cd03e7a4e18829ae33eecbb3f3e2e2f4fd5 Mon Sep 17 00:00:00 2001 From: Sveske_Juice Date: Sat, 24 Feb 2024 01:36:25 +0100 Subject: [PATCH] Simple footer --- src/lib/IO/Button.svelte | 2 +- src/routes/+layout.svelte | 88 +++++++++++++++++++++++++++++++ static/images/icons/discord.svg | 18 +++++++ static/stylesheets/main-theme.css | 1 + 4 files changed, 108 insertions(+), 1 deletion(-) create mode 100644 src/routes/+layout.svelte create mode 100644 static/images/icons/discord.svg diff --git a/src/lib/IO/Button.svelte b/src/lib/IO/Button.svelte index a2bfdc0..68365f9 100644 --- a/src/lib/IO/Button.svelte +++ b/src/lib/IO/Button.svelte @@ -49,7 +49,7 @@ cursor: pointer; - box-shadow: inset 0 0 0 100px rgba(255, 255, 255, 0.25); + filter: brightness(130%); } .content { diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte new file mode 100644 index 0000000..9b7f51e --- /dev/null +++ b/src/routes/+layout.svelte @@ -0,0 +1,88 @@ + + + + + + +
+
+
+ © 2023-2024 Developed by: +
+ Benjamin Dreyer +
+ Oliver Schwenger +
+ Sylvester Junge +
+ Zhentao Wei +
+
+ Website source code +
+
+

About Us

+ About +
+
+

Contact

+ +
+
+
+ + + diff --git a/static/images/icons/discord.svg b/static/images/icons/discord.svg new file mode 100644 index 0000000..5423b87 --- /dev/null +++ b/static/images/icons/discord.svg @@ -0,0 +1,18 @@ + + + + + diff --git a/static/stylesheets/main-theme.css b/static/stylesheets/main-theme.css index 35d7d4e..7259632 100644 --- a/static/stylesheets/main-theme.css +++ b/static/stylesheets/main-theme.css @@ -6,6 +6,7 @@ --text3: #b0afad; /* Third text color. */ --text4: #868584; /* Fourth text color. */ --background: #232222; + --background1: #1b1a1a; --primary: #227c9d; --secondary: #ffcb77; --accent: #17c3b2;