From 4115092ff21017c1cefffb860c15309324ee37ab Mon Sep 17 00:00:00 2001
From: Bill Niblock
The Internet Vagabond is a simple website I use for the rare blog posts I make, information about me and the projects I work on, and a digital plot of e-land. It is programmed as much in @@ -21,7 +21,7 @@ technical details, check out the GitHub Project page for this repository. You can easily get to it via the menu on the right.
-My name is Bill Niblock, and I consider myself a citizen of the Internet. I'm a computer scientist by education, a technologist by trade, a gamer by hobby, a philosopher by choice, and the list goes diff --git a/src/styles.css b/src/styles.css index 0f014e2..170a089 100644 --- a/src/styles.css +++ b/src/styles.css @@ -126,14 +126,14 @@ header { ********/ main { - position: fixed; top: 0px; bottom: 0px; height: 100%; - margin: 40px 40px; padding: 10px; z-index: 0; + position: fixed; top: 0px; left: 0px; bottom: 0px; z-index: 0; + overflow: auto; background-color: #EBEBFA; } article { - position: relative; - margin: 0px auto; padding: 0px; + position: relative; width: 60%; + margin: 50px auto; padding: 10px; } article h1 { @@ -147,10 +147,14 @@ article h1::first-letter { color: white; text-shadow: 0px 0px 10px blue; } -article h3 { +article h2 { text-align: right; padding: 0px; border-bottom: 1px solid darkgrey; font: 1.0em "Lucida Sans Unicode", "Lucida Grande", sans-serif; text-shadow: 2px 2px #DEDEDE; color: darkgrey; letter-spacing: 1.2em; } + +article p { + padding: 0px 10px; +}