modernize website

This commit is contained in:
2023-07-26 17:37:51 +02:00
parent 49555211a7
commit 8fc62c8265
15 changed files with 120 additions and 175 deletions

View File

@@ -1,15 +1,4 @@
$( document ).ready( function () {
$( '#navbar' ).load( '/nav.html' );
$( '#footer' ).load( '/footer.html' );
$( document ).ready(function () {
$( '.button' ).mouseenter( function () {
$( this ).stop();
$( this ).animate( { 'background-color':'rgba(65, 211, 65, 1)', 'border-radius': '0px' }, 200 );
});
$( '.button' ).mouseleave( function () {
$( this ).stop();
$( this ).animate( { 'background-color':'rgba(0, 128, 0, 1)', 'border-radius': '500px' }, 200 );
});
});
});