diff --git a/_layouts/default.html b/_layouts/default.html index 0b6bc13..3b87b5a 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -76,7 +76,7 @@ display: flex; flex-direction: column; justify-content: center; - gap: 0.2rem; + gap: 0; } .header-right { @@ -86,6 +86,20 @@ gap: 12px; } + .star-count { + display: flex; + align-items: center; + gap: 4px; + color: var(--accent-color); + font-size: 0.9rem; + opacity: 0.8; + } + + .star-count svg { + width: 16px; + height: 16px; + } + .social-links { display: flex; align-items: center; @@ -282,6 +296,19 @@ transition: transform 0.3s ease; } + .site-slogan { + font-size: 0.9rem; + opacity: 0.7; + margin: 0 0 0.8rem 0; + line-height: 1; + } + + @media (max-width: 768px) { + .site-slogan { + display: none; + } + } + .site-title:hover { transform: translateY(-2px); } @@ -881,6 +908,7 @@