summaryrefslogtreecommitdiff
path: root/static/theme.css
diff options
context:
space:
mode:
authorJames Mills <prologic@shortcircuit.net.au>2020-03-26 01:01:35 +1000
committerJames Mills <prologic@shortcircuit.net.au>2020-03-26 01:01:35 +1000
commit7fa7a38167415301a9a01735d2eb354542c11dcb (patch)
tree0389042f505c36a32ad9f9cbd2ed71e74f34f77f /static/theme.css
parentbcd79ba2c55de3202f1e9b4b9b6070b36cfdb7db (diff)
Add a footer
Diffstat (limited to 'static/theme.css')
-rw-r--r--static/theme.css28
1 files changed, 28 insertions, 0 deletions
diff --git a/static/theme.css b/static/theme.css
index bdafeea..e65094b 100644
--- a/static/theme.css
+++ b/static/theme.css
@@ -462,3 +462,31 @@ label span input {
}
*/
}
+
+footer {
+ position: fixed;
+ left: 0;
+ bottom: 0;
+ width: 100%;
+ background: #1e1e1e;
+ color: white;
+ text-align: center;
+}
+
+footer p {
+ font-size: 8px;
+}
+
+footer p a {
+ color: #fff;
+}
+
+footer p a {
+ text-decoration: underline;
+ color: #fff;
+ transition: .3s background-color;
+}
+
+footer p a:hover {
+ background-color: #005f5f;
+}