From b95713a03e1f82868f5db81fb264c23496641cad Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Sat, 10 Aug 2019 14:02:00 -0400 Subject: Add alternate themes --- assets/90s.css | 8 +++++ assets/base.css | 9 +++++ assets/boring.css | 54 +++++++++++++++++++++++++++++ assets/classic.css | 61 +++++++++++++++++++++++++++++++++ assets/fonts/josefinsans-regular.woff | Bin 0 -> 25468 bytes assets/fonts/josefinsans-regular.woff2 | Bin 0 -> 19512 bytes assets/fonts/poly-regular.woff | Bin 0 -> 30024 bytes assets/fonts/poly-regular.woff2 | Bin 0 -> 23252 bytes assets/fonts/poly-regularitalic.woff | Bin 0 -> 31772 bytes assets/fonts/poly-regularitalic.woff2 | Bin 0 -> 25004 bytes assets/h4xx0r.css | 21 ++++++++++++ assets/images/stars.gif | Bin 0 -> 1898 bytes assets/normal.css | 2 ++ 13 files changed, 155 insertions(+) create mode 100644 assets/90s.css create mode 100644 assets/base.css create mode 100644 assets/boring.css create mode 100644 assets/classic.css create mode 100755 assets/fonts/josefinsans-regular.woff create mode 100755 assets/fonts/josefinsans-regular.woff2 create mode 100755 assets/fonts/poly-regular.woff create mode 100755 assets/fonts/poly-regular.woff2 create mode 100755 assets/fonts/poly-regularitalic.woff create mode 100755 assets/fonts/poly-regularitalic.woff2 create mode 100644 assets/h4xx0r.css create mode 100644 assets/images/stars.gif create mode 100644 assets/normal.css (limited to 'assets') diff --git a/assets/90s.css b/assets/90s.css new file mode 100644 index 0000000..abebb92 --- /dev/null +++ b/assets/90s.css @@ -0,0 +1,8 @@ +html { + background: url(/assets/images/stars.gif); + color: yellow; +} + +a { color: red } + +code, pre { color: #0f0 } diff --git a/assets/base.css b/assets/base.css new file mode 100644 index 0000000..b2e6055 --- /dev/null +++ b/assets/base.css @@ -0,0 +1,9 @@ +body { + max-width: 40rem; + padding: 1rem; + margin: auto; +} + +pre { overflow: auto } + +img { max-width: 100% } diff --git a/assets/boring.css b/assets/boring.css new file mode 100644 index 0000000..48d61f7 --- /dev/null +++ b/assets/boring.css @@ -0,0 +1,54 @@ +@font-face { + font-family: 'Josefin Sans'; + src: url('/assets/fonts/josefinsans-regular.woff2') format('woff2'), + url('/assets/fonts/josefinsans-regular.woff') format('woff'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'Poly'; + src: url('/assets/fonts/poly-regular.woff2') format('woff2'), + url('/assets/fonts/poly-regular.woff') format('woff'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'Poly'; + src: url('/assets/fonts/poly-regularitalic.woff2') format('woff2'), + url('/assets/fonts/poly-regularitalic.woff') format('woff'); + font-weight: normal; + font-style: italic; +} + +html { + --dark: #222; +} + +h1, h2, h3, h4, h5, h6 { + font-family: 'Futura', 'Josefin Sans', sans-serif; + font-weight: normal; +} + +body { + color: var(--dark); + font-family: 'Palatino', 'Poly', serif; +} + +a { + color: var(--dark); +} + +a:hover { + color: #0033cc; +} + +hr { + border: none; + border-bottom: 1px dotted #999; +} + +p { + line-height: 1.5; +} diff --git a/assets/classic.css b/assets/classic.css new file mode 100644 index 0000000..90d0e40 --- /dev/null +++ b/assets/classic.css @@ -0,0 +1,61 @@ +@font-face { + font-family: 'Josefin Sans'; + src: url('/assets/fonts/josefinsans-regular.woff2') format('woff2'), + url('/assets/fonts/josefinsans-regular.woff') format('woff'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'Poly'; + src: url('/assets/fonts/poly-regular.woff2') format('woff2'), + url('/assets/fonts/poly-regular.woff') format('woff'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'Poly'; + src: url('/assets/fonts/poly-regularitalic.woff2') format('woff2'), + url('/assets/fonts/poly-regularitalic.woff') format('woff'); + font-weight: normal; + font-style: italic; +} + +html { + --dark: #222; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + /* font-family: 'Futura', 'Josefin Sans', sans-serif; */ + font-family: 'Josefin Sans', sans-serif; + font-weight: normal; +} + +body { + color: var(--dark); + /* font-family: 'Palatino', 'Poly', serif; */ + font-family: 'Poly', serif; +} + +a { + color: var(--dark); +} + +a:hover { + color: #0033cc; +} + +hr { + border: none; + border-bottom: 1px dotted #999; +} + +p { + line-height: 1.5; +} diff --git a/assets/fonts/josefinsans-regular.woff b/assets/fonts/josefinsans-regular.woff new file mode 100755 index 0000000..fe29901 Binary files /dev/null and b/assets/fonts/josefinsans-regular.woff differ diff --git a/assets/fonts/josefinsans-regular.woff2 b/assets/fonts/josefinsans-regular.woff2 new file mode 100755 index 0000000..2c0284f Binary files /dev/null and b/assets/fonts/josefinsans-regular.woff2 differ diff --git a/assets/fonts/poly-regular.woff b/assets/fonts/poly-regular.woff new file mode 100755 index 0000000..3d8e457 Binary files /dev/null and b/assets/fonts/poly-regular.woff differ diff --git a/assets/fonts/poly-regular.woff2 b/assets/fonts/poly-regular.woff2 new file mode 100755 index 0000000..cc7abe8 Binary files /dev/null and b/assets/fonts/poly-regular.woff2 differ diff --git a/assets/fonts/poly-regularitalic.woff b/assets/fonts/poly-regularitalic.woff new file mode 100755 index 0000000..83b3ed8 Binary files /dev/null and b/assets/fonts/poly-regularitalic.woff differ diff --git a/assets/fonts/poly-regularitalic.woff2 b/assets/fonts/poly-regularitalic.woff2 new file mode 100755 index 0000000..797ec22 Binary files /dev/null and b/assets/fonts/poly-regularitalic.woff2 differ diff --git a/assets/h4xx0r.css b/assets/h4xx0r.css new file mode 100644 index 0000000..61a7204 --- /dev/null +++ b/assets/h4xx0r.css @@ -0,0 +1,21 @@ +html { + --dark: #1c1c1c; + --light: #888; + --green: #0c0; + background-color: var(--dark); +} + +body { + color: var(--light); + font-family: monospace; +} + +a { + color: var(--green); + text-decoration: none; +} + +a:hover { + color: var(--dark); + background-color: var(--green); +} diff --git a/assets/images/stars.gif b/assets/images/stars.gif new file mode 100644 index 0000000..e45d5d9 Binary files /dev/null and b/assets/images/stars.gif differ diff --git a/assets/normal.css b/assets/normal.css new file mode 100644 index 0000000..ea4c1f5 --- /dev/null +++ b/assets/normal.css @@ -0,0 +1,2 @@ +body { color: #242424 } +h1, h2, h3, h4, h5, h6 { font-family: sans-serif } -- cgit v1.2.3