Scale up the blurnail on hover, percents suck, decimals are more readable

This commit is contained in:
daudix
2024-09-18 18:44:43 +03:00
parent a6602357e6
commit 2469f64eb7
14 changed files with 69 additions and 69 deletions

View File

@ -94,14 +94,14 @@
@keyframes toc-dropdown-open {
from {
transform: scale(50%) translate(1rem, 1rem);
transform: scale(0.5) translate(1rem, 1rem);
opacity: 0;
}
}
@keyframes toc-dropdown-open-rtl {
from {
transform: scale(50%) translate(-1rem, 1rem);
transform: scale(0.5) translate(-1rem, 1rem);
opacity: 0;
}
}
@ -116,7 +116,7 @@
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath d='M2 3a1 1 0 1 0 0 2 1 1 0 0 0 0-2m4 0c-.554 0-1 .446-1 1s.446 1 1 1h8c.554 0 1-.446 1-1s-.446-1-1-1ZM2 7a1 1 0 1 0 0 2 1 1 0 0 0 0-2m4 0c-.554 0-1 .446-1 1s.446 1 1 1h8c.554 0 1-.446 1-1s-.446-1-1-1Zm-4 4a1 1 0 1 0 0 2 1 1 0 0 0 0-2m4 0c-.554 0-1 .446-1 1s.446 1 1 1h8c.554 0 1-.446 1-1s-.446-1-1-1z'/%3E%3C/svg%3E");
:root[dir*="rtl"] & {
transform: scaleX(-100%);
transform: scaleX(-1);
}
}
}