mirror of
https://git.ari.lt/ari.lt/blog.ari.lt.git
synced 2025-02-04 09:39:25 +01:00
update @ Fri Oct 6 18:45:04 EEST 2023
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
This commit is contained in:
parent
1a889fc5cb
commit
e68262a5d1
2 changed files with 12 additions and 11 deletions
|
@ -1,11 +1,5 @@
|
|||
:root {
|
||||
color-scheme: dark;
|
||||
|
||||
--clr-bg: #262220;
|
||||
--clr-fg: #f9f6e8;
|
||||
|
||||
--clr-blockquote-bg: #ede9d3;
|
||||
|
||||
--blockquote-width: 2px;
|
||||
|
||||
--clr-link: #cdc4c4; /* #9e9b9b; */
|
||||
|
@ -14,12 +8,8 @@
|
|||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
background-color: var(--clr-bg);
|
||||
color: var(--clr-fg);
|
||||
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
|
|
|
@ -172,7 +172,18 @@ HTML_BEGIN: typing.Final[
|
|||
<meta name="theme-color" content="{theme_primary}" />
|
||||
<link rel="manifest" href="/manifest.json" />
|
||||
<link rel="canonical" href="{blog}/{path}">
|
||||
<style type="text/css">{critical_css}</style>
|
||||
<style type="text/css">
|
||||
:root{
|
||||
color-scheme:{theme_type};
|
||||
--clr-bg:{theme_primary};
|
||||
--clr-fg:{theme_secondary}
|
||||
}
|
||||
*,*::before,*::after{
|
||||
background-color:var(--clr-bg);
|
||||
color:var(--clr-fg)
|
||||
}
|
||||
{critical_css}
|
||||
</style>
|
||||
<link
|
||||
href="/{styles}"
|
||||
rel="preload"
|
||||
|
|
Loading…
Add table
Reference in a new issue