librecounter

This commit is contained in:
N0\A
2025-10-30 08:51:52 +01:00
parent eadbf18661
commit 9a0fb86d80
3 changed files with 80 additions and 0 deletions

View File

@@ -182,6 +182,54 @@ br {
content: "";
}
/* LibreCounter */
.librecounter {
margin-top: 24px;
padding-top: 16px;
border-top: 1px solid rgba(244, 162, 97, 0.3);
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
min-height: 73px;
}
.librecounter-text {
color: var(--text-color);
font-size: 0.9rem;
opacity: 0.9;
}
.librecounter-text a {
color: var(--link-color);
text-decoration: none;
transition: color 0.2s ease;
}
.librecounter-text a:hover {
color: var(--subtitle-color);
text-decoration: underline;
}
.librecounter a {
display: inline-block;
transition: transform 0.2s ease, opacity 0.2s ease;
flex-shrink: 0;
line-height: 0;
}
.librecounter a:hover {
transform: scale(1.05);
opacity: 0.9;
}
.librecounter img {
display: block;
height: 64px;
width: auto;
max-width: 100%;
}
/* Back to top button */
.back-to-top {
position: fixed;