diff --git a/404.html b/404.html index be85563..0a6e061 100644 --- a/404.html +++ b/404.html @@ -1,7 +1,7 @@
-Page not found. Click + here to go home.
diff --git a/src/404.css b/src/404.css new file mode 100644 index 0000000..548aa46 --- /dev/null +++ b/src/404.css @@ -0,0 +1,79 @@ +/* + * CSS for theinternetvagabond.com 404 page + * (C)2015 Bill Niblock + * Licensed under the WTFPL [http://www.wtfpl.net] + */ + +/* General */ + +.clean { clear:both;} + +body { + position: relative; + background-color: #EBEBFA; +} + +a,a:visited,a:link,a:focus { + text-decoration: none; +} + +/********** + * * + * Header * + * * + **********/ + +header { + position: fixed; top: 0px; left: 0px; right: 0px; + margin: 0px; padding: 10px; z-index: 5; + background-color: white; + border-bottom: 1px solid lightgrey; + box-shadow: 0px 2px 10px -5px blue; +} + +#title { + float: left; + list-style: none; + margin: 0px 25px; padding: 0px; +} + +#title li { + float:left; margin: 0px; padding: 0px; + font: 1.2em "Lucida Sans Unicode", "Lucida Grande", sans-serif; + text-shadow: 2px 2px #DEDEDE; color: darkgrey; letter-spacing: 1.2em; +} + +#title li::first-letter { + margin: 0px; padding: 0px 2px; + font: 1.3em "Lucida Sans Unicode", "Lucida Grande", sans-serif; + color: white; text-shadow: 0px 0px 10px blue; +} + +/********** + * * + * Footer * + * * + **********/ + +#cw { + font: 0.9em "Lucida Sans Unicode", "Lucida Grande", sans-serif; + letter-spacing: 0.4em; color: grey; +} + +/******** + * * + * Body * + * * + ********/ + +main { + position: relative; top: 0px; left: 0px; z-index: 0; + width: 60%; min-width: 800px; height: 100%; min-height: 800px; + margin: 0px auto; + overflow: auto; +} + +article { + margin: 50px auto; padding: 10px; +} +