This commit is contained in:
PlOszukiwacz 2025-02-01 17:25:09 +01:00
parent 6796c5e10d
commit fb3d89a0bf
Signed by: ploszukiwacz
GPG key ID: E059F5C88034386C
4 changed files with 810 additions and 2 deletions

View file

@ -129,9 +129,26 @@ body {
}
.category a {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: var(--text);
text-decoration: none;
transition: color 0.2s;
transition: all 0.2s;
font-size: calc(var(--link-size, 16px) * 0.9);
line-height: 1.5;
padding: 0.25rem 0;
}
.category a i,
.category a img.custom-link-icon {
width: var(--link-size, 16px);
height: var(--link-size, 16px);
min-width: var(--link-size, 16px);
display: flex;
align-items: center;
justify-content: center;
font-size: calc(var(--link-size, 16px) * 0.8);
}
.category a:hover {
@ -833,3 +850,47 @@ body {
transform: translateY(-2px);
background: var(--surface0);
}
.copyright-section {
margin-top: 2rem;
padding-top: 1rem;
border-top: 1px solid var(--surface0);
text-align: center;
font-size: 0.95rem;
opacity: 1;
color: var(--text);
}
.copyright-section p {
margin: 0.5rem 0;
line-height: 1.6;
}
copyright-section a {
color: var(--blue);
text-decoration: none;
transition: all 0.2s;
font-weight: 500;
padding: 0.1rem 0.3rem;
border-radius: 4px;
}
copyright-section a:hover {
color: var(--pink);
background: var(--surface0);
}
copyright-footer {
margin-top: 1rem;
font-size: 0.85rem;
opacity: 0.7;
color: var(--text);
}
.settings-note {
margin-top: 1rem;
font-size: 0.9rem;
opacity: 0.8;
color: var(--text);
text-align: center;
}