body{ margin:0; background:#021F34; font-family: 'Raleway', sans-serif; } header{ background:#021A2C; display: block; height: 2%; position: absolute; width: 100%; } #container{ display: block; height: 78%; position: absolute; top: 2%; width: 100%; background:url(//wip.neikos.it/images/blur.png) center no-repeat; } #container h1{ color: #FFFFFF; display: block; font-size: 4em; font-weight: 200; margin:10% 0 1% 0; text-align: center; width: auto; } #container p{ color: #FFFFFF; display: block; font-size: 2.5em; font-weight: 200; margin: 1% 0; text-align: center; width: auto;} footer{ background:#021A2C; bottom: 0; height: 20%; left: 0; position: absolute; width: 100%; } footer .neikos { bottom: 50px; color: #FFFFFF; display: block; font-size: 10px !important; margin: 0 auto; position: relative; top: 90px; width: 130px; } footer .neikos a { background:url(//wip.neikos.it/images/neikos.png) no-repeat right center; color: #FFFFFF; margin: 0 5px 0 0; padding: 0 15px 0 0; text-decoration: none; }

Sito in manutenzione

maffeisistemi.it

-

Torneremo presto online

// Set the date we're counting down to var countDownDate = new Date("Feb 23, 2022 10:00:00").getTime(); // Update the count down every 1 second var x = setInterval(function() { // Get todays date and time var now = new Date().getTime(); // Find the distance between now and the count down date var distance = countDownDate - now; // Time calculations for days, hours, minutes and seconds var days = Math.floor(distance / (1000 * 60 * 60 * 24)); var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)); var seconds = Math.floor((distance % (1000 * 60)) / 1000); // Output the result in an element with id="demo" document.getElementById("demo").innerHTML = hours + "h " + minutes + "m " + seconds + "s "; // If the count down is over, write some text if (distance < 0) { clearInterval(x); document.getElementById("demo").innerHTML = "-"; } }, 1000);