aboutsummaryrefslogtreecommitdiff
path: root/site.css
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2019-06-01 21:01:42 -0400
committerBen Burwell <ben@benburwell.com>2019-06-01 21:01:42 -0400
commit9238db636f807a6576eb0ef91cfdce52b105aeaa (patch)
treea203c588832500dcb601475009d513dbb76c9c9e /site.css
parent73c909092c7a5f569544b19bca8d200b55892d85 (diff)
Don't publish extraneous files
Diffstat (limited to 'site.css')
-rw-r--r--site.css81
1 files changed, 0 insertions, 81 deletions
diff --git a/site.css b/site.css
deleted file mode 100644
index 751197c..0000000
--- a/site.css
+++ /dev/null
@@ -1,81 +0,0 @@
-:root {
- --background-color: #fff;
- --text-color: #333;
- --muted-color: #999;
- --accent-color: #ccc;
- --link-color: #09e;
- --header-color: #4a0;
-}
-
-@media print {
- :root {
- --background-color: #fff;
- --text-color: #000;
- --muted-color: #000;
- --accent-color: rgba(0, 0, 0, 0);
- --link-color: #000;
- --header-color: #000;
- }
-}
-
-@media (prefers-color-scheme: dark) {
- :root {
- --background-color: #222;
- --text-color: #bbb;
- --muted-color: #999;
- --accent-color: #666;
- }
-}
-
-html {
- background-color: var(--background-color);
- font-family: sans-serif;
- color: var(--text-color);
- padding: 0;
- margin: 0;
-}
-
-body {
- padding: 0;
- margin: 0;
-}
-
-main {
- max-width: 600px;
- margin-left: auto;
- margin-right: auto;
- padding: 1em;
-}
-
-a {
- color: var(--link-color);
-}
-
-h1,
-h2,
-h1 a,
-h2 a {
- color: var(--header-color);
-}
-
-p, li {
- line-height: 1.5;
-}
-
-li {
- margin-bottom: 1em;
-}
-
-aside {
- padding: 0 1em;
- margin: 2em 0;
- font-size: 1.2em;
- border-left: 5px solid var(--accent-color);
-}
-
-footer {
- border-top: 2px solid var(--accent-color);
- color: var(--muted-color);
- padding-top: 1em;
- font-size: 0.9em;
-}