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 */ +}