From 4d9d4018ce14548e77286d9ba4356b3e2d954144 Mon Sep 17 00:00:00 2001 From: Melody Horn Date: Sun, 17 Jun 2018 11:55:24 -0500 Subject: get some actual work done --- .gitignore | 1 + Gemfile | 3 +++ index.html | 20 +++++++++++--------- site.css | 25 +++++++++++++++++++++++++ 4 files changed, 40 insertions(+), 9 deletions(-) create mode 100644 .gitignore create mode 100644 Gemfile create mode 100644 site.css diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57510a2 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +_site/ diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..0ba2bee --- /dev/null +++ b/Gemfile @@ -0,0 +1,3 @@ +source 'https://rubygems.org' +gem 'github-pages', group: :jekyll_plugins +gem 'wdm', '>= 0.1.0' if Gem.win_platform? diff --git a/index.html b/index.html index 964ed75..5c8edbb 100644 --- a/index.html +++ b/index.html @@ -4,16 +4,18 @@ boringcactus - + -

ya girl melody still doesn't know shit

-

but she's on twitter

+
+

boringcactus (Melody Horn)

+

+ i'm a programmer and a trans woman. + i've done some cool shit but it's under my deadname and i don't know how much of it is any good so i'm not talking about it here right now. +

+

+ i mostly exist on twitter retweeting good content and occasionally tweeting bad content. +

+
diff --git a/site.css b/site.css new file mode 100644 index 0000000..2cf7b9b --- /dev/null +++ b/site.css @@ -0,0 +1,25 @@ +/* "derived" (stolen) from evenbettermotherfucking.website */ +html { + margin: 1rem auto; + background: #f2f2f2; + color: #444444; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; + font-size: 16px; + line-height: 1.8; + text-shadow: 0 1px 0 #ffffff; + max-width: 60em; +} +body { + margin: 0 1rem; +} +code { + background: white; +} +a { + border-bottom: 1px solid #444444; + color: #444444; + text-decoration: none; +} +a:hover { + border-bottom-style: dashed; +} -- cgit v1.2.3