1
0
forked from finn/site

scss work

This commit is contained in:
finn 2024-08-01 03:53:33 -07:00
parent 426e917df9
commit 76b20a3b38
3 changed files with 32 additions and 27 deletions

View File

@ -1,4 +1,8 @@
pip: *pip:\
```
pip install flask pip install flask
pip install python-dotenv pip install python-dotenv
pip install flask-wtf
```

View File

@ -8,39 +8,41 @@
--mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace; --mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
--standard-border-radius: 5px; --standard-border-radius: 5px;
/* Default (light) theme */ --bg: #212121;
--bg: #fff; --accent-bg: #2b2b2b;
--accent-bg: #f5f7ff; --text: #dcdcdc;
--text: #212121; --text-light: #ababab;
--text-light: #585858;
--border: #898EA4; --border: #898EA4;
--accent: #0d47a1; /* --accent: #ffb300; */
--accent-hover: #1266e2; --accent: #ace1af;
/* --accent-hover: #ffe099; */
--accent-hover: #99dabe;
--accent-text: var(--bg); --accent-text: var(--bg);
--code: #d81b60; --code: #f06292;
--preformatted: #444; --preformatted: #ccc;
--marked: #ffdd33; --marked: #ffdd33;
--disabled: #efefef; --disabled: #111;
} }
/* Dark theme */ /* Light theme */
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: light) {
:root, :root,
::backdrop { ::backdrop {
color-scheme: dark; color-scheme: light;
--bg: #212121; /* Default (light) theme */
--accent-bg: #2b2b2b; --bg: #fff;
--text: #dcdcdc; --accent-bg: #f5f7ff;
--text-light: #ababab; --text: #212121;
/* --accent: #ffb300; */ --text-light: #585858;
--accent: #ace1af; --accent: #0d47a1;
/* --accent-hover: #ffe099; */ --accent-hover: #1266e2;
--accent-hover: #99dabe;
--accent-text: var(--bg); --accent-text: var(--bg);
--code: #f06292; --code: #d81b60;
--preformatted: #ccc; --preformatted: #444;
--disabled: #111; --disabled: #efefef;
}
}
/* Add a bit of transparency so light media isn't so glaring in dark mode */ /* Add a bit of transparency so light media isn't so glaring in dark mode */
img, img,
video { video {

File diff suppressed because one or more lines are too long