From 71510d26b9a193d080c498ede9ff8d241e46a360 Mon Sep 17 00:00:00 2001 From: ElBi21 Date: Sun, 7 Apr 2024 15:58:51 +0200 Subject: [PATCH] Repos changes --- repos/repos.css | 6 ++++++ repos/repos.js | 7 ------- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/repos/repos.css b/repos/repos.css index 587f53f..5c8b78c 100644 --- a/repos/repos.css +++ b/repos/repos.css @@ -94,4 +94,10 @@ padding: 0; border-radius: 8px; margin: 0 1px 0 1px; +} + +@keyframes hoverOnRepo { + 0% { + + } } \ No newline at end of file diff --git a/repos/repos.js b/repos/repos.js index 8f7e85c..9ddd33d 100644 --- a/repos/repos.js +++ b/repos/repos.js @@ -72,13 +72,6 @@ document.addEventListener("DOMContentLoaded", function () { function changeShadowOut(repoHovered) { repoHovered.style.transform = "box-shadow: 0px 5px 10px rgb(134, 132, 132);" } - - repoBox.mouseenter(function() { - $(this).attr("currentColor", $(this).css("background-color")); - $(this).css("background-color", "#f7f7f7") - }).mouseout(function() { - $(this).css("background-color", $(this).attr("currentColor")); - }) } }) })