chore: spruce up blockquotes

This commit is contained in:
Cory Dransfeldt 2024-01-10 14:30:29 -08:00
parent f118943a01
commit abc3dc0b19
No known key found for this signature in database
3 changed files with 7 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "4.6.0", "version": "4.6.1",
"description": "The source for my personal site, blog and portfolio. Built using 11ty and hosted on Netlify.", "description": "The source for my personal site, blog and portfolio. Built using 11ty and hosted on Netlify.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -25,9 +25,13 @@ p {
} }
blockquote { blockquote {
color: var(--gray-medium);
font-weight: 700;
font-size: var(--font-size-lg);
line-height: var(--line-height-lg);
margin: 1.25rem 0; margin: 1.25rem 0;
padding-left: .875rem; padding-left: .875rem;
border-left: .25rem solid var(--gray-400); border-left: .25rem solid var(--gray-medium);
} }
:is(body, html, nav .tags, nav .search) svg { :is(body, html, nav .tags, nav .search) svg {

View file

@ -39,6 +39,7 @@
--selection-color: var(--accent-color); --selection-color: var(--accent-color);
--gray-light: var(--gray-200); --gray-light: var(--gray-200);
--gray-lighter: var(--gray-50); --gray-lighter: var(--gray-50);
--gray-medium: var(--gray-400);
--brand-github: #333; --brand-github: #333;
--brand-proton: #6d4aff; --brand-proton: #6d4aff;