diff --git a/template.html b/template.html
index c7ea0a4eebd4474d3fd73f8639db57ffcb492e96..48dc25d7091da2c4f799bd57edf85b650166cca5 100644
--- a/template.html
+++ b/template.html
@@ -142,10 +142,9 @@ function currentTime() {
   var day = d.getDate();
   var h = d.getHours();
   var m = d.getMinutes();
-  var s = d.getSeconds();
 
   var date = (day<10 ? '0' : '') + day + '.' + (month<10 ? '0' : '') + month + '.' + d.getFullYear();
-  var time = (h<10 ? '0' : '') + h + ":" + (m<10 ? '0' : '') + m + ':' + (s<10 ? '0' : '') + s;
+  var time = (h<10 ? '0' : '') + h + ":" + (m<10 ? '0' : '') + m;
 
   $('#date').text(date);
   $('#time').text(time);
diff --git a/website/style.css b/website/style.css
index f769cf51230b08bffc2450d1d3b1f8baf5e6d811..5b696c334a423513ba546a82f5f9d213d6b701bd 100644
--- a/website/style.css
+++ b/website/style.css
@@ -196,19 +196,7 @@ footer img {
   background: -moz-linear-gradient(left, #fed426 0%, #70b74f 50%, #558ec7 100%);
   background: -webkit-linear-gradient(left, #fed426 0%,#70b74f 50%,#558ec7 100%);
   background: linear-gradient(to right, #fed426 0%,#70b74f 50%,#558ec7 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fed426', endColorstr='#558ec7',GradientType=1 );
   z-index: 999;
-  animation-name: gradient-counter;
-  animation-duration: 10s;
-  animation-timing-function: linear;
-  -webkit-animation-timing-function: linear;
-  animation-iteration-count: infinite;
-  transform: translateZ(0);
-}
-
-@keyframes gradient-counter {
-  from { width: 0; }
-  to { width: 100%; }
 }
 
 .pagination-wrapper {