lots of finnangling
This commit is contained in:
parent
6750e78737
commit
fbecaf4445
3 changed files with 16 additions and 5 deletions
|
@ -10,6 +10,8 @@ draft: true
|
||||||
tags: []
|
tags: []
|
||||||
---
|
---
|
||||||
|
|
||||||
|
https://irreal.org/blog/?p=697
|
||||||
|
|
||||||
So recently I got a Youtube reccomendation of [Primeagen](https://www.youtube.com/@ThePrimeTimeagen) where he reacted to the video below.
|
So recently I got a Youtube reccomendation of [Primeagen](https://www.youtube.com/@ThePrimeTimeagen) where he reacted to the video below.
|
||||||
Of course as I do at this point I didn't watch his reaction and just went to the source to form my own opinion.
|
Of course as I do at this point I didn't watch his reaction and just went to the source to form my own opinion.
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,10 @@
|
||||||
--nav-link-bg-color-hover:hsl(0,0%,20%);
|
--nav-link-bg-color-hover:hsl(0,0%,20%);
|
||||||
--content-border-color: #5ac;
|
--content-border-color: #5ac;
|
||||||
/*stolen from code theme*/
|
/*stolen from code theme*/
|
||||||
--blockquote-bg: rgb(29, 31, 33);
|
|
||||||
|
--codeblock-bg: rgb(29, 31, 33);
|
||||||
|
--blockquote-bg: oklch(30% 0.01 325);
|
||||||
|
--blockquote-accent-color: oklch(45% 0.1628 256.77);
|
||||||
--highlight-bg: #fff;
|
--highlight-bg: #fff;
|
||||||
--highlight-fg: #000;
|
--highlight-fg: #000;
|
||||||
--nav-link-bg-color-active: #118411;
|
--nav-link-bg-color-active: #118411;
|
||||||
|
@ -60,7 +63,9 @@
|
||||||
--nav-link-bg-color: hsl(0,0%,75%);
|
--nav-link-bg-color: hsl(0,0%,75%);
|
||||||
--nav-link-bg-color-hover:hsl(0,0%,70%);
|
--nav-link-bg-color-hover:hsl(0,0%,70%);
|
||||||
--content-border-color: #026;
|
--content-border-color: #026;
|
||||||
--blockquote-bg: rgb(226,224,222);
|
--codeblock-bg: rgb(226,224,222);
|
||||||
|
--blockquote-bg: oklch(70% 0.012 296.97);
|
||||||
|
--blockquote-accent-color: oklch(45% 0.1628 256.77);
|
||||||
--highlight-bg: #000;
|
--highlight-bg: #000;
|
||||||
--highlight-fg: #fff;
|
--highlight-fg: #fff;
|
||||||
--nav-link-bg-color-active: #118411;
|
--nav-link-bg-color-active: #118411;
|
||||||
|
@ -123,6 +128,9 @@ a:active {
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
background: var(--blockquote-bg);
|
background: var(--blockquote-bg);
|
||||||
|
& > * {
|
||||||
|
border-left: solid var(--blockquote-accent-color);
|
||||||
|
}
|
||||||
strong {
|
strong {
|
||||||
color:red;
|
color:red;
|
||||||
}
|
}
|
||||||
|
@ -130,7 +138,7 @@ blockquote {
|
||||||
|
|
||||||
pre:has( > code), pre.hljs {
|
pre:has( > code), pre.hljs {
|
||||||
/*I don't wanna dig into highlight.js internals to make !important redundant*/
|
/*I don't wanna dig into highlight.js internals to make !important redundant*/
|
||||||
background: var(--blockquote-bg) !important;
|
background: var(--codeblock-bg) !important;
|
||||||
}
|
}
|
||||||
/*fancy user selection for funsies*/
|
/*fancy user selection for funsies*/
|
||||||
::selection {
|
::selection {
|
||||||
|
|
|
@ -176,11 +176,12 @@ article {
|
||||||
}
|
}
|
||||||
blockquote {
|
blockquote {
|
||||||
/*font-style: italic;*/
|
/*font-style: italic;*/
|
||||||
padding: 0.5em 1em;
|
padding: 0;
|
||||||
border-radius: 0.5rem;
|
border-radius: 0.5rem;
|
||||||
p{
|
p{
|
||||||
/*margin is annoying in this case*/
|
/*margin is annoying in this case*/
|
||||||
margin: 0;
|
margin: 0.4em 0.5em;
|
||||||
|
padding: 0em 0.5em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/*might need to become grid when adding in table of contents and sidenotes*/
|
/*might need to become grid when adding in table of contents and sidenotes*/
|
||||||
|
|
Loading…
Reference in a new issue