Fidgeting...

This commit is contained in:
Bill Nibz 2015-04-09 21:59:17 -04:00
parent 5bac6d766c
commit ba44162281
2 changed files with 10 additions and 29 deletions

View file

@ -22,10 +22,9 @@
<!-- Message --> <!-- Message -->
<article> <article>
<h1>Nope. 404.</h1> <h1>404 :: Page Not Found</h1>
<p>Page not found. Click <p><a href="http://www.theinternetvagabond.com">Click here
<a href="http://www.theinternetvagabond.com">here</a> to go home.</a></p>
to go home.</p>
</article> </article>
<!-- Footer --> <!-- Footer -->

View file

@ -6,8 +6,6 @@
/* General */ /* General */
.clean { clear:both;}
body { body {
position: relative; position: relative;
background-color: #EBEBFA; background-color: #EBEBFA;
@ -17,11 +15,7 @@ a,a:visited,a:link,a:focus {
text-decoration: none; text-decoration: none;
} }
/********** /* Header */
* *
* Header *
* *
**********/
header { header {
position: fixed; top: 0px; left: 0px; right: 0px; position: fixed; top: 0px; left: 0px; right: 0px;
@ -49,31 +43,19 @@ header {
color: white; text-shadow: 0px 0px 10px blue; color: white; text-shadow: 0px 0px 10px blue;
} }
/********** /* Footer */
* *
* Footer * footer{
* * position: fixed; right: 0px; bottom: 10px;
**********/ }
#cw { #cw {
font: 0.9em "Lucida Sans Unicode", "Lucida Grande", sans-serif; font: 0.9em "Lucida Sans Unicode", "Lucida Grande", sans-serif;
letter-spacing: 0.4em; color: grey; letter-spacing: 0.4em; color: grey;
} }
/******** /* Body */
* *
* 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 { article {
margin: 50px auto; padding: 10px; margin: 50px auto; padding: 10px;
} }