feat: link authors + post links
This commit is contained in:
parent
86add0806e
commit
9e7cc103cb
6 changed files with 48 additions and 9 deletions
|
@ -143,10 +143,10 @@ nav svg {
|
|||
margin-top: .125rem;
|
||||
}
|
||||
|
||||
:is(nav a:hover, nav a:active, nav a:focus) svg,
|
||||
nav svg:hover,
|
||||
nav svg:active,
|
||||
nav svg:focus {
|
||||
:is(a:hover, a:active, a:focus) svg,
|
||||
a svg:hover,
|
||||
a svg:active,
|
||||
a svg:focus {
|
||||
stroke-width: var(--stroke-width-bold);
|
||||
}
|
||||
|
||||
|
@ -293,12 +293,18 @@ code {
|
|||
/* articles */
|
||||
article h2 {
|
||||
line-height: var(--line-height-2xl);
|
||||
margin: 0;
|
||||
margin: 0 0 .25rem;
|
||||
}
|
||||
|
||||
article [rel="author"],
|
||||
article time {
|
||||
font-size: var(--font-size-sm);
|
||||
line-height: var(--line-height-sm);
|
||||
margin-right: .25rem;
|
||||
}
|
||||
|
||||
article .meta > * {
|
||||
height: 1rem;
|
||||
}
|
||||
|
||||
/* icons */
|
||||
|
@ -306,6 +312,11 @@ svg {
|
|||
stroke-width: var(--stroke-width-default);
|
||||
}
|
||||
|
||||
.icon--small > svg {
|
||||
width: 1rem;
|
||||
height: 1rem;
|
||||
}
|
||||
|
||||
.icon--bold > svg {
|
||||
stroke-width: var(--stroke-width-bold);
|
||||
}
|
||||
|
|
Reference in a new issue