This commit is contained in:
Never Gude 2026-01-13 17:37:03 +01:00
parent a900655a51
commit f25531690f
20 changed files with 311 additions and 10 deletions

View file

@ -1,6 +1,6 @@
:root {
--foreground: #1a1a1a;
--background: #fdfdfd;
--background: #fdfdfdf0;
--border: #c9c9c9;
--html-background: #e3e3e3;
--blockquote-text: #606060;
@ -12,7 +12,7 @@
@media (prefers-color-scheme: dark) {
:root {
--foreground: #fdfdfd;
--background: #1a1a1a;
--background: #1a1a1af0;
--border: #4c4c4c;
--html-background: #303030;
--blockquote-text: #e6e6e6;
@ -22,6 +22,7 @@
}
}
html {
color: var(--foreground);
/*background: url("recursion.gif");*/
@ -47,6 +48,13 @@ body {
font-kerning: normal;
}
#tv-screen {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
#page-header {
display: flex;
flex-direction: row;