😏
All checks were successful
ci/woodpecker/push/deploy-rsync Pipeline was successful
ci/woodpecker/push/deploy-cloudflare Pipeline was successful
ci/woodpecker/push/deploy-netlify Pipeline was successful

This commit is contained in:
Adora Laura Kalb 2024-05-03 16:26:31 +02:00
parent bef60f775b
commit d71cc2cbe9
Signed by: adoralaura
SSH key fingerprint: SHA256:3XrkbR8ikAZJVtYfaUliX1MhmJYVAe/ocIb/MiDHBJ8
4 changed files with 48 additions and 1 deletions

View file

@ -304,3 +304,14 @@ footer {
} }
} }
} }
#inconspicuous-timer-a > i {
color: $body-font-color;
text-decoration: none;
font-style: normal !important;
}
#inconspicuous-timer-a > i:hover {
text-decoration: underline $background-color;
}

View file

@ -45,3 +45,6 @@ This website is [open source](https://code.lila.network/lauralani/personal-websi
This page makes due without any cookies, javascript frameworks and databases in the effort to make the web quick and usable again :) This page makes due without any cookies, javascript frameworks and databases in the effort to make the web quick and usable again :)
This page was last updated at {{< last-updated >}} This page was last updated at {{< last-updated >}}
{{< footer-timer >}}

View file

@ -0,0 +1,33 @@
^-^ <a id="inconspicuous-timer-a" href="/images/curious_cat.jpg" ><i id="inconspicuous-timer"></i></a>
<script>
// Set the date we're counting up from
const countUpDate = new Date("Dec 28, 2023 12:34:56").getTime();
const timerElement = document.getElementById("inconspicuous-timer")
function updateHtml() {
// Get today's date and time
var now = new Date().getTime();
// Find the distance between now and the count up date
var distance = now - countUpDate;
// Time calculations for days, hours, minutes and seconds
var years = Math.floor(distance / (1000 * 60 * 60 * 24 * 365));
var days = Math.floor(distance % (1000 * 60 * 60 * 24 * 365) / (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);
var text = ""
if (years != 0) {
text = years + "y " + days + "d " + hours + "h " + minutes + "m " + seconds + "s"
} else {
text = days + "d " + hours + "h " + minutes + "m " + seconds + "s"
}
timerElement.innerHTML = text;
}
updateHtml()
var x = setInterval(updateHtml, 1000);
</script>

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB