From d3b4f23a0227c742248bb456b7f1d49856c787e8 Mon Sep 17 00:00:00 2001 From: Garrit Franke Date: Mon, 29 Mar 2021 23:18:18 +0200 Subject: [PATCH] feat: support us section --- index.html | 26 ++++++++++++++++++++++++++ styles/contact.css | 3 ++- styles/index.css | 6 ++++++ styles/support.css | 5 +++++ 4 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 styles/support.css diff --git a/index.html b/index.html index 2f3a98f..d00312c 100644 --- a/index.html +++ b/index.html @@ -100,5 +100,31 @@ > +
+
+

Support Us

+

+ The services on this platform are 100% free of charge. + Hosting servers does have its price though. Concider + supporting us by leaving a small donation. +

+

Donate

+
+
+ diff --git a/styles/contact.css b/styles/contact.css index 6bf86ca..78244b8 100644 --- a/styles/contact.css +++ b/styles/contact.css @@ -1,5 +1,6 @@ .contact__container { - margin: auto 12vw; + width: 80vw; + margin: auto; justify-content: center; } diff --git a/styles/index.css b/styles/index.css index 0519ddd..3046510 100644 --- a/styles/index.css +++ b/styles/index.css @@ -6,6 +6,8 @@ @import url("./welcome.css"); @import url("./services.css"); @import url("./contact.css"); +@import url("./support.css"); + /* Fonts */ @font-face { @@ -25,3 +27,7 @@ body { font-weight: 250; text-align: center; } + +footer { + margin-bottom: 2rem; +} diff --git a/styles/support.css b/styles/support.css new file mode 100644 index 0000000..b251424 --- /dev/null +++ b/styles/support.css @@ -0,0 +1,5 @@ +.support-us__container { + width: 80vw; + margin: auto; + justify-content: center +} \ No newline at end of file