From 6939fd45c76e8ceef1aa3cd5660389cfb577c8d6 Mon Sep 17 00:00:00 2001 From: supositware Date: Tue, 18 May 2021 19:29:51 +0200 Subject: [PATCH] footer always at bottom --- public/stylesheets/index.css | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/public/stylesheets/index.css b/public/stylesheets/index.css index 4370b0e..a9d13fd 100644 --- a/public/stylesheets/index.css +++ b/public/stylesheets/index.css @@ -3,6 +3,12 @@ animation-direction: alternate-reverse; } +footer { + position: fixed; + bottom: 0; + width: 100%; +} + a:link { color: #A0FF9A; } @@ -100,10 +106,3 @@ a:hover { background-color: #ff2400; } } - -progress::-webkit-progress-value { - -webkit-transition : width 1s ease; - -moz-transition : width 1s ease; - -o-transition : width 1s ease; - transition : width 1s ease; -}