diff options
| author | s1n <[email protected]> | 2019-10-29 16:51:20 -0700 |
|---|---|---|
| committer | s1n <[email protected]> | 2019-10-29 16:51:20 -0700 |
| commit | 130e8504f4d480b3926f13ce9d7fed3d8b16a728 (patch) | |
| tree | 81fb1217396b1cb9c696f9dbd2e39436a00f9d2c /development/css | |
| parent | try aes (diff) | |
| parent | dark mode haha (diff) | |
| download | s1n.pw-admin-130e8504f4d480b3926f13ce9d7fed3d8b16a728.tar.xz s1n.pw-admin-130e8504f4d480b3926f13ce9d7fed3d8b16a728.zip | |
Merge branch 'master' of https://github.com/8cy/s1n.pw-admin
Diffstat (limited to 'development/css')
| -rw-r--r-- | development/css/main.css | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/development/css/main.css b/development/css/main.css index 1757765..389c5ea 100644 --- a/development/css/main.css +++ b/development/css/main.css @@ -4,4 +4,14 @@ body { display: grid; align-items: center; justify-items: center; -}
\ No newline at end of file +} + +@media (prefers-color-scheme: dark) { + body { + background: black; + } + + pre { + color: white; + } +} |