updates to website

This commit is contained in:
janis
2023-03-14 10:09:15 +01:00
parent 31c9eeb426
commit e85cf73881
5 changed files with 32 additions and 19 deletions

View File

@@ -10,14 +10,4 @@
$( document ).ready( function () {
$( '#nav' ).load( '/nav.html' );
$( '.button' ).mouseenter( function () {
$( this ).stop();
$( this ).animate( { 'border-radius': '5px', 'background-color': 'rgb(60, 85, 140)' }, 200 );
} );
$( '.button' ).mouseleave( function () {
$( this ).stop();
$( this ).animate( { 'border-radius': '30px', 'background-color': 'rgb(24, 43, 61)' }, 400 );
} );
} );