Add dynamic support for avatar.png or logo.png in header

This commit is contained in:
CPTN Cosmo 2026-03-16 03:16:39 +01:00
parent ac0249ceb9
commit 979e655d4d
3 changed files with 36 additions and 0 deletions

View file

@ -127,6 +127,18 @@ h2 {
.text-center { text-align: center; }
.hidden { display: none !important; }
/* Logo */
.site-logo {
max-width: 150px;
max-height: 150px;
border-radius: 50%;
margin-bottom: 1.5rem;
box-shadow: 0 0 20px rgba(0,229,255,0.3);
border: 2px solid rgba(255,255,255,0.1);
object-fit: cover;
animation: fadeIn 0.5s ease-out;
}
/* Colors & Neons */
.icon-blue { color: var(--neon-blue); text-shadow: 0 0 10px var(--neon-blue); }
.icon-red { color: var(--neon-red); text-shadow: 0 0 10px var(--neon-red); }