From 8846cd2a6760e952b6ae8f0ae3621e63b655175d Mon Sep 17 00:00:00 2001 From: urlysses Date: Wed, 1 Mar 2017 14:19:50 -0500 Subject: [PATCH] General styling updates (better text hierarchy) --- 1991.css | 21 ++++++++++++++++++++- index.html | 2 +- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/1991.css b/1991.css index b5260b8..7fa8302 100644 --- a/1991.css +++ b/1991.css @@ -95,7 +95,7 @@ section { main h1 { margin-top: 8%; margin-bottom: 0; - font-family: "Rubik Mono One"; + font-family: "Rubik Mono One", sans-serif; background: #fff; color: #2637dd; padding: 0.1em 0.3em; @@ -106,6 +106,21 @@ main h1 { h2 { margin-top: 5%; + position: relative; +} +h2::first-letter { + color: #2637dd; +} +h2:after { + content: ""; + display: block; + width: 0.7em; + height: 2em; + background: #fff; + position: absolute; + top: 0; + left: -0.05em; + z-index: -1; } h1, h2, h3, h4, h5 { @@ -146,6 +161,10 @@ pre { overflow: hidden; text-align: left; } +p { + margin-top: 2em; + margin-bottom: 2em; +} ::selection { background: #fff; diff --git a/index.html b/index.html index 7cbbc61..a239c79 100644 --- a/index.html +++ b/index.html @@ -52,7 +52,7 @@ include 1991.fs \ Start the server on port 8080. 8080 1991: -

Logging In II: Logging In, Deeper

+

Logging In II: Logging In, Deeper

Route Wildcards (Fuzzy Routing / URL Mapping)

If you want to specify that some part of a route is a wildcard (accepts any value), then you can wrap some named value in <chevrons>. 1991 will accept any URL that matches your wildcard pattern, setting the internal value of whatever you place between the chevrons to whatever is actually requested.