about summary refs log tree commit diff
path: root/static
diff options
context:
space:
mode:
authorPjotr Prins2024-06-23 04:12:40 -0500
committerPjotr Prins2024-06-23 04:31:22 -0500
commit3f1cdf10c4b986d0ac9b0d0eaf4cc0312eeba063 (patch)
treea8572d36e493b0cca9937bf155375ae057ffff7f /static
parent8d87f4db24ca5a36897fbd454527cbf54aff40cd (diff)
downloadgenecup-3f1cdf10c4b986d0ac9b0d0eaf4cc0312eeba063.tar.gz
Working footer - but still overlapping body
Diffstat (limited to 'static')
-rw-r--r--static/style.css33
1 files changed, 33 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css
index d4cc2ee..47b0e22 100644
--- a/static/style.css
+++ b/static/style.css
@@ -72,3 +72,36 @@ a:active {
 ul {
   margin-left:40px;
 }
+
+.main { 
+  flex: 1;
+  padding: 30px 0;
+}
+
+body 
+{
+  display: flex;
+  min-height: 80vh;
+  flex-direction: column;
+  padding-bottom: 40px;
+}
+
+footer {
+     color: white;
+     font-size: small;
+     padding: 3px 0;
+     position: absolute;
+     left: 0;
+     bottom: 0;
+     width: 100%;
+}
+
+.footer a {
+     color: yellow; 
+     text-decoration: none;
+     transition: color 0.3s ease;
+}
+
+.footer a:hover {
+     color: #adb5bd;
+}