style: liste éditoriale, navbar avec tagline, footer 2 colonnes

This commit is contained in:
Cedric Abonnel
2026-05-08 13:43:40 +02:00
parent 6ba1c18764
commit 0bf9213713
4 changed files with 196 additions and 34 deletions
+157
View File
@@ -370,6 +370,163 @@ footer {
font-size: 0.85rem;
}
/* ─── Navbar tagline ────────────────────── */
.navbar-tagline {
font-size: 0.68rem;
font-weight: 400;
color: var(--vl-muted);
letter-spacing: 0;
margin-top: 2px;
opacity: 0.85;
}
/* ─── Liste éditoriale ───────────────────── */
.posts-list {
max-width: 720px;
margin: 0 auto;
}
.post-entry {
padding: 2rem 0;
border-bottom: 1px solid var(--vl-border);
}
.post-entry:last-child {
border-bottom: none;
}
.post-entry-title {
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 0.6rem;
line-height: 1.35;
letter-spacing: -0.3px;
}
.post-entry-title a {
color: var(--vl-text);
text-decoration: none;
transition: color 0.15s;
}
.post-entry-title a:hover {
color: var(--vl-accent);
}
.post-entry-excerpt {
color: var(--vl-muted);
font-size: 0.95rem;
margin-bottom: 0.85rem;
line-height: 1.65;
}
.post-entry-meta {
display: flex;
align-items: center;
gap: 1.25rem;
font-size: 0.82rem;
color: var(--vl-muted);
}
.post-entry-edit {
color: var(--vl-muted);
text-decoration: none;
transition: color 0.15s;
}
.post-entry-edit:hover {
color: var(--vl-text);
}
.post-entry-read {
color: var(--vl-accent);
text-decoration: none;
font-weight: 600;
margin-left: auto;
transition: opacity 0.15s;
}
.post-entry-read:hover {
opacity: 0.75;
}
/* ─── Footer 2 colonnes ──────────────────── */
footer {
border-top: 1px solid var(--vl-border);
background-color: var(--vl-surface);
}
.footer-inner {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 2rem;
}
.footer-about strong {
font-size: 0.9rem;
font-weight: 700;
color: var(--vl-text);
display: block;
margin-bottom: 0.4rem;
letter-spacing: -0.2px;
}
.footer-about p {
font-size: 0.82rem;
color: var(--vl-muted);
margin: 0 0 0.5rem;
line-height: 1.55;
}
.footer-about small {
font-size: 0.78rem;
color: var(--vl-muted);
}
.footer-about small a {
color: var(--vl-muted);
text-decoration: underline;
text-decoration-color: var(--vl-border);
transition: color 0.15s;
}
.footer-about small a:hover {
color: var(--vl-accent);
}
.footer-nav {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 0.5rem;
flex-shrink: 0;
}
.footer-nav a {
font-size: 0.85rem;
color: var(--vl-muted);
text-decoration: none;
transition: color 0.15s;
}
.footer-nav a:hover {
color: var(--vl-accent);
}
@media (max-width: 576px) {
.footer-inner {
flex-direction: column;
gap: 1.5rem;
}
.footer-nav {
align-items: flex-start;
flex-direction: row;
gap: 1rem;
}
}
/* ─── Utilitaires ─────────────────────────── */
.text-muted {
color: var(--vl-muted) !important;