1
0

Separated out CSS files, and updated some of them

This commit is contained in:
Aaron Lindsay
2011-02-24 21:29:00 -07:00
parent ca2a0f8795
commit 0d23d11143
7 changed files with 118 additions and 88 deletions

28
css/layout.css Normal file
View File

@ -0,0 +1,28 @@
/**
* These styles handle layout
*/
body {
margin: 0;
padding: 0;
}
#header-inner, #content, #footer-inner {
width: 80%;
min-width: 45em;
max-width: 60em;
margin: 0 auto;
}
#main, #sidebar {
position: relative;
}
#main {
float: left;
width: 73%;
}
#sidebar {
float: right;
width: 23%;
}
#footer {
clear: both;
}