From: Carl Worth Date: Sat, 16 May 2020 20:24:31 +0000 (-0700) Subject: Add the most basic of font styling X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=commitdiff_plain;h=97f1fd386a064f94c46ea0e959d680ade224d40d Add the most basic of font styling Simply choosing a sans-serif font for the body as well as some larger (and bold) font sizes for h1 and h2 headers. --- diff --git a/index.html b/index.html index dea8e1d..24f4f32 100644 --- a/index.html +++ b/index.html @@ -6,6 +6,7 @@ LMNO Games +

LMNO Games

diff --git a/style.css b/style.css new file mode 100644 index 0000000..899b902 --- /dev/null +++ b/style.css @@ -0,0 +1,20 @@ +/*\ +|*| +|*| Core elements: Sizing and padding +|*| +\*/ + +body { + line-height: 1.5; + font-family: sans-serif; +} + +h1 { + font-size: 150%; + font-weight: bold; +} + +h2 { + font-size: 110%; + font-weight: bold; +}