summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authornsensfel <SpamShield0@noot-noot.org>2018-08-31 16:00:25 +0200
committernsensfel <SpamShield0@noot-noot.org>2018-08-31 16:00:25 +0200
commitef01f7826ac3fdf8434d9e8af2eef86638b058e9 (patch)
tree48457108055df5a74c02252884a9896045063f35 /src
parent0dae91de7063aa3760efb7fcaac444a3cf4680e4 (diff)
Adds a landing page.
Diffstat (limited to 'src')
-rw-r--r--src/css/src/landing.scss50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/css/src/landing.scss b/src/css/src/landing.scss
new file mode 100644
index 0000000..573e5c4
--- /dev/null
+++ b/src/css/src/landing.scss
@@ -0,0 +1,50 @@
+@import 'shared/colors';
+@import 'shared/parameters';
+@import 'shared/sanitize';
+@import 'shared/shadows';
+
+body
+{
+ flex-direction: column;
+ flex-wrap: wrap;
+ justify-content: center;
+}
+
+html, body, .fullscreen-module
+{
+ min-height: 450px;
+}
+
+.main-server-version
+{
+ font-size: 1em;
+}
+
+.main-server-logo img
+{
+ margin-top: 4em;
+ height: 15em;
+}
+
+nav
+{
+ margin-top: 2em;
+}
+
+nav a
+{
+ display: block;
+ font-size: 1.5em;
+ font-weight: bold;
+ text-decoration: none;
+ margin-bottom: 0.2em;
+ padding: 0.2em 0.5em 0.2em 0.5em;
+ border-radius: 5px;
+ background-color: rgba(0,0,0,0);
+ transition: background-color ease-out 0.5s;
+}
+
+nav a:hover
+{
+ background-color: rgba(0,0,0,0.5);
+}