From 50ca911468dbbc6bd6916577fe9ac899c038b211 Mon Sep 17 00:00:00 2001 From: archos Date: Sun, 9 Feb 2025 17:36:20 +0100 Subject: [PATCH] =?UTF-8?q?Vytvo=C5=99eno=20tla=C4=8D=C3=ADtko,=20kter?= =?UTF-8?q?=C3=A9=20=20nyn=C3=AD=20stahuje=20finance=5F2024.csv?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2024.html | 7 ++++++- styly.css | 19 +++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/2024.html b/2024.html index 6c7083f..91dc69f 100644 --- a/2024.html +++ b/2024.html @@ -4,10 +4,15 @@ Přehled Financí 2024 +

Přehled Financí za rok 2024

- +
+ 📂 Stáhnout CSV +
+ +
diff --git a/styly.css b/styly.css index 7da061d..1a92318 100644 --- a/styly.css +++ b/styly.css @@ -132,3 +132,22 @@ header h1 { border-bottom: 3px solid #218838; padding-bottom: 8px; } +/* Kontejner pro tlačítko exportu */ +.export-button-container { + text-align: center; /* Zarovná tlačítko na střed */ + margin-top: 20px; /* Přidá trochu prostoru nad tlačítkem */ +} + +/* Styl tlačítka */ +#export-pdf { + padding: 10px 20px; /* Lepší padding */ + font-size: 16px; /* Větší písmo pro lepší čitelnost */ + border-radius: 5px; /* Zaoblené rohy */ + cursor: pointer; + transition: background-color 0.3s ease-in-out; +} + +/* Efekt při najetí myší */ +#export-pdf:hover { + background-color: #0056b3; /* Lehce tmavší modrá při hover */ +}