From 10dec697c1610dc12b3a0cca86ead570bb13fc5d Mon Sep 17 00:00:00 2001 From: archos Date: Mon, 20 May 2024 08:27:49 +0200 Subject: [PATCH] =?UTF-8?q?Lehce=20opraven=20odkaz=20v=20zapat=C3=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 8 ++++---- styly.css | 10 ++++++++++ 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index ab26f5e..2f09adb 100644 --- a/index.html +++ b/index.html @@ -28,10 +28,10 @@
diff --git a/styly.css b/styly.css index cbbd65f..ecc1924 100644 --- a/styly.css +++ b/styly.css @@ -202,4 +202,14 @@ footer i { font-size: 20px; /* Větší font pro lepší čitelnost */ } } +footer a.name-link { + color: #007BFF; /* Modrá barva odkazu */ + text-decoration: none; /* Žádné podtržení jako výchozí */ + font-weight: bold; /* Tučné písmo */ + transition: color 0.3s ease; /* Plynulá změna barvy */ +} +footer a.name-link:hover { + color: #0056b3; /* Tmavší modrá při najetí myši */ + text-decoration: underline; /* Podtržení při najetí myši */ +}