Reafcatred the stylesheets and made fixes to the Resume page.

This commit is contained in:
g* 2025-06-15 03:09:10 +02:00
commit 7ddca3c39d
14 changed files with 366 additions and 329 deletions

16
docs/src/js/loader.js Normal file
View file

@ -0,0 +1,16 @@
// ---------------------
// This script loads the page loading animation.
// ---------------------
document.getElementById('loader').style.display = 'block';
function fadeOutLoader() {
const loader = document.getElementById('loader');
loader.classList.add('fade-out');
setTimeout(() => {
loader.remove();
}, 1000);
}
setTimeout(fadeOutLoader, 2500);