zvětšení písma odkazu 25px

This commit is contained in:
Lukáš 2024-02-08 15:27:20 +01:00
parent 08751492b2
commit 808ae29bfe
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,3 @@
# testing-docs.cz
Projekt [testing-docs.cz](https://testing-docs.cz/index.html) je wiki projekt pro každého testera.
Projekt [testing-docs.cz](https://testing-docs.cz/index.html) složí jako pomůcka pro každého testera.

View File

@ -163,3 +163,12 @@ th {
.button {
color: var(--special_white);
}
/* Zvětšení písma odkazu */
.button {
transition: font-size 0.3s ease;
}
.button:hover {
font-size: 25px;
}