feat: rss banner

This commit is contained in:
Cory Dransfeldt 2024-04-22 13:14:19 -07:00
parent df838e8513
commit 47925dc0c8
No known key found for this signature in database
5 changed files with 42 additions and 1 deletions

View file

@ -9,6 +9,11 @@
line-height: var(--line-height-sm);
margin: 0;
a {
color: var(--text-color);
text-decoration: underline;
}
& > svg {
display: inline;
vertical-align: middle;
@ -25,6 +30,12 @@
&.npm {
border-color: var(--brand-npm);
& p a:hover,
& p a:active,
& p a:focus {
color: var(--brand-npm);
}
& svg {
stroke: var(--brand-npm);
}
@ -33,8 +44,28 @@
&.github {
border-color: var(--brand-github);
& p a:hover,
& p a:active,
& p a:focus {
color: var(--brand-github);
}
& svg {
stroke: var(--brand-github);
}
}
&.rss {
border-color: var(--brand-rss);
& p a:hover,
& p a:active,
& p a:focus {
color: var(--brand-rss);
}
& svg {
stroke: var(--brand-rss);
}
}
}