C-1: Initial repository

This commit is contained in:
Mark Strancheuski
2023-01-28 02:33:24 +03:00
commit 355ecc6041
51 changed files with 1938 additions and 0 deletions

10
scripts/script.js Normal file
View File

@@ -0,0 +1,10 @@
const headerLink = document.querySelector('.header-link');
const headerLinkImageSecondary = document.querySelector('.header-link-image_secondary');
headerLink.addEventListener('mouseover', () => {
headerLinkImageSecondary.style.opacity = '1';
});
headerLink.addEventListener('mouseout', () => {
headerLinkImageSecondary.style.opacity = '0';
});