From 3cf2d9a52da15b8d9fd8bf5bbeb6ccbf214ced60 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Mon, 4 Jan 2021 01:57:22 -0800 Subject: [PATCH] Center the tilted lines horizontally. --- voussoir.net/index.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/voussoir.net/index.html b/voussoir.net/index.html index ba54235..2f8b12b 100644 --- a/voussoir.net/index.html +++ b/voussoir.net/index.html @@ -46,6 +46,7 @@ code { font-family: monospace; } #headline { + line-height: 3.25em; margin-bottom: 75px; } #headline * @@ -58,6 +59,11 @@ code { font-family: monospace; } #headline_l2 { font-size: 3.5em; } #headline_l3 { font-size: 1.5em; } +#headline .tilt_holder +{ + display: grid; + justify-content: center; +} #headline .tilt_holder > * { display: inline-block; @@ -136,6 +142,7 @@ code { font-family: monospace; } @media screen and (max-width: 500px) { + #headline { line-height: 2.25em; } #headline_l1 { font-size: 3em; } #headline_l2 { font-size: 2.5em; } #headline_l3 { font-size: 1em; }