diff options
author | Sn4il <sn4il@thedroth.rocks> | 2025-02-06 09:33:33 +0300 |
---|---|---|
committer | Sn4il <sn4il@thedroth.rocks> | 2025-02-06 09:33:33 +0300 |
commit | 76ad3cb3f6af349b65d38322eed00d6de500f528 (patch) | |
tree | e582662d7dd3aad7603f861c67f8972842700dc8 /brutalist.css | |
parent | 15a536f0fbb8e292541ecaf63857a851a51b3e04 (diff) | |
download | sn4il-site-76ad3cb3f6af349b65d38322eed00d6de500f528.tar.xz sn4il-site-76ad3cb3f6af349b65d38322eed00d6de500f528.zip |
Go brutal
Diffstat (limited to 'brutalist.css')
-rw-r--r-- | brutalist.css | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/brutalist.css b/brutalist.css new file mode 100644 index 0000000..0df9da5 --- /dev/null +++ b/brutalist.css @@ -0,0 +1,73 @@ +body { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; +} + +pre { + padding: 1em; + background-color: #eee; +} + +pre code { + color: #009; +} +pre kbd { + color: #090; +} + +table, +td, +th { + border-collapse: collapse; +} + +td, +th { + padding: .5em; + border: 1px solid #eee; +} + +th { + background-color: #eee; +} + +@media only screen and (max-width: 720px) { + img { + max-width: 100%; + } + + pre { + overflow-y: scroll; + } +} + +@media (prefers-color-scheme: dark) { + body { + background-color: #000; + color: #e8e6e3; + } + + a:link { + color: #3391ff; + } + + a:visited { + color: #ba55d3; + } + + pre { + background-color: #222; + } + + pre code { + color: #bbb; + } + + td, + th { + border: 1px solid #222; + } + + th { + background-color: #222; + } +}
\ No newline at end of file |