aboutsummaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-01-03 18:39:57 +0800
committerRunxi Yu <me@runxiyu.org>2025-01-03 18:39:57 +0800
commit7a5c14f1846eeda602c63f36b225f3886e6cdfd2 (patch)
treed46bc4f87b3fa17f3115d2d50ce49bbb476dec91 /style.css
parentMuch smaller CSS (diff)
downloade2-spec-7a5c14f1846eeda602c63f36b225f3886e6cdfd2.tar.gz
e2-spec-7a5c14f1846eeda602c63f36b225f3886e6cdfd2.tar.zst
e2-spec-7a5c14f1846eeda602c63f36b225f3886e6cdfd2.zip
Delete all build stuff
We'll use the main website repo to build things and just use this as a subtree
Diffstat (limited to 'style.css')
-rw-r--r--style.css68
1 files changed, 0 insertions, 68 deletions
diff --git a/style.css b/style.css
deleted file mode 100644
index 5bbefd3..0000000
--- a/style.css
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * SPDX-License-Identifier: CC0-1.0
- * Primarily written by Drew Devault
- * I asked him whether this could be PD as I want to keep this repo PD. Thanks!
- */
-html {
- font-family: system-ui, sans-serif;
- --bg: hsl(32, 98%, 92%);
- --fg: #1E1F21;
- --boxbg: hsl(32, 60%, 88%);
- --border: rgb(180, 180, 180);
- --dim-text-color: #333;
- --link-color: #24527d;
- --text-decoration-color: #CCC;
- color: var(--fg);
- background-color: var(--bg);
-}
-
-@media(prefers-color-scheme:dark) {
- html {
- --bg: #1E1F21;
- --fg: #EEEFF1;
- --dim-text-color: #999;
- --boxbg: #2E2F31;
- --border: rgb(80, 80, 80);
- --link-color: #5ca7ed;
- --text-decoration-color: #474747;
- }
-}
-
-
-code, pre {
- font-family: "DejaVu Sans Mono", monospace;
-}
-
-body {
- margin: 0 auto;
- padding: 1rem;
- max-width: 850px;
-}
-
-h1 {
- margin-top: 0;
- font-size: 1.5rem;
-}
-
-a:link {
- text-decoration-color: var(--text-decoration-color);
- color: var(--link-color);
-}
-a:visited {
- text-decoration-color: var(--text-decoration-color);
- color: var(--link-color);
-}
-
-.title {
- text-align: center;
- font-size: 180%;
-}
-
-.author {
- text-align: center;
- font-size: 120%;
-}
-
-/*
- * vim: ts=8 sw=8 noexpandtab
- */