add avatar

This commit is contained in:
nik
2025-09-24 12:23:47 +03:00
parent c9cccfc060
commit d625eb7a57
4 changed files with 66 additions and 3 deletions

View File

@@ -24,3 +24,21 @@ body {
height: auto;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* лёгкая тень */
}
/* Blog specific styles */
.post-entry {
margin-bottom: 2rem;
padding: 1.5rem;
background: rgba(var(--entry), 0.8);
border-radius: 8px;
transition: transform 0.2s;
}
.post-entry:hover {
transform: translateY(-2px);
}
.entry-content h2 {
margin-top: 2rem;
color: rgb(var(--primary));
}