summaryrefslogtreecommitdiff
path: root/sass
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2021-08-20 22:19:25 +0200
committerDaniel Friesel <derf@finalrewind.org>2021-08-20 22:19:25 +0200
commit7186853043d79c84e8f88549c759df347ce1b5d9 (patch)
tree5e86074e3a3238826d113144dea8c58152612cf5 /sass
parentfa05d5ce9b06627a1c1a194fff059ce0cb608c5c (diff)
add footer with version info and about/imprint/privacy links
Diffstat (limited to 'sass')
-rw-r--r--sass/app.scss11
-rw-r--r--sass/dark.scss5
-rw-r--r--sass/light.scss5
3 files changed, 21 insertions, 0 deletions
diff --git a/sass/app.scss b/sass/app.scss
index a4f6840..9703217 100644
--- a/sass/app.scss
+++ b/sass/app.scss
@@ -14,6 +14,11 @@ html {
margin-right: auto;
}
+a {
+ color: $link-color;
+ text-decoration: none;
+}
+
.globalnote {
margin-top: 1em;
font-style: italic;
@@ -331,6 +336,12 @@ ul.departures {
}
}
+.about {
+ color: $fg2;
+ margin-top: 2em;
+
+}
+
@font-face {
font-family: 'Material Icons';
font-style: normal;
diff --git a/sass/dark.scss b/sass/dark.scss
index 96db6ba..8ee3458 100644
--- a/sass/dark.scss
+++ b/sass/dark.scss
@@ -3,4 +3,9 @@
*
* SPDX-License-Identifier: BSD-2-Clause
*/
+
+$fg2: #bbbbbb;
+
+$link-color: #9999ff;
+
@import 'app.scss';
diff --git a/sass/light.scss b/sass/light.scss
index 96db6ba..9ec0f0f 100644
--- a/sass/light.scss
+++ b/sass/light.scss
@@ -3,4 +3,9 @@
*
* SPDX-License-Identifier: BSD-2-Clause
*/
+
+$fg2: #666666;
+
+$link-color: #000099;
+
@import 'app.scss';