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 python-dotenv
pip install flask-wtf
```

View File

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

File diff suppressed because one or more lines are too long