minor css bits
This commit is contained in:
parent
8a6a3862fe
commit
fa5643cd28
2 changed files with 17 additions and 2 deletions
|
@ -22,7 +22,8 @@
|
|||
|
||||
--codeblock-bg: rgb(29, 31, 33);
|
||||
--blockquote-bg: oklch(30% 0.01 325);
|
||||
--blockquote-accent-color: oklch(45% 0.1628 256.77);
|
||||
/*--blockquote-accent-color: oklch(45% 0.1628 256.77);*/
|
||||
--blockquote-accent-color: oklch(86.64% 0.29 142);
|
||||
--highlight-bg: #fff;
|
||||
--highlight-fg: #000;
|
||||
--nav-link-bg-color-active: #118411;
|
||||
|
@ -65,7 +66,8 @@
|
|||
--content-border-color: #026;
|
||||
--codeblock-bg: rgb(226,224,222);
|
||||
--blockquote-bg: oklch(70% 0.012 296.97);
|
||||
--blockquote-accent-color: oklch(45% 0.1628 256.77);
|
||||
/*--blockquote-accent-color: oklch(45% 0.1628 256.77);*/
|
||||
--blockquote-accent-color: oklch(96.17% 0.2432 109);
|
||||
--highlight-bg: #000;
|
||||
--highlight-fg: #fff;
|
||||
--nav-link-bg-color-active: #118411;
|
||||
|
|
|
@ -1,5 +1,18 @@
|
|||
@layer pre-load, baseline, overload-1, print;
|
||||
|
||||
/*
|
||||
* saving this for when doing a table of contents, position: sticky isn't good enough
|
||||
*https://lea.verou.me/blog/2020/06/hybrid-positioning-with-css-variables-and-max/
|
||||
* will also need to make use of container queries to shift it into static positioning when the screen isn't wide enough
|
||||
*nav{
|
||||
border: dashed lime 3px;
|
||||
position:fixed;
|
||||
left: 20px;
|
||||
top: 100px;
|
||||
min-width:200px;
|
||||
}
|
||||
* */
|
||||
|
||||
@layer overload-1{
|
||||
dt{
|
||||
font-weight:normal;
|
||||
|
|
Loading…
Reference in a new issue