Skip to content
Snippets Groups Projects
Commit ccfed7a2 authored by Dirk Sarpe's avatar Dirk Sarpe
Browse files

Merge branch 'reduce-load' into 'master'

reduce load

See merge request !3
parents b9c2c04f 3b7bb630
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
......@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment