Created
January 14, 2013 10:25
-
-
Save justonefixxxx/4529131 to your computer and use it in GitHub Desktop.
2013-11-14
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
margin: 0; | |
padding: 0; | |
} | |
header, nav, section, article, aside, footer { | |
display: block; | |
} | |
body { | |
font-size: 12px; | |
font-family: sans-serif; | |
} | |
a { | |
color: blue; | |
outline: none; | |
text-decoration: underline; | |
} | |
a:hover { | |
text-decoration: none; | |
} | |
/* Begin of styles for the demonstration (you can remove them) */ | |
a.expand { | |
width: 150px; | |
display: block; | |
margin: 10px 0 0; | |
} | |
a.expand:hover { | |
height: 500px; | |
} | |
/* End of of styles for the demonstration */ | |
p { | |
margin: 0 0 18px | |
} | |
img { | |
border: none; | |
} | |
input { | |
vertical-align: middle; | |
} | |
#wrapper { | |
width: 100%; | |
min-width: 1000px; | |
} | |
li{ | |
list-style-type: none; | |
} | |
.tableofcontents li{ | |
} | |
/* Header | |
-----------------------------------------------------------------------------*/ | |
#header { | |
height: 60px; | |
background: #e3e3e3; | |
} | |
/* Middle | |
-----------------------------------------------------------------------------*/ | |
#middle { | |
border-left: 250px solid #cccccc; | |
height: 1%; | |
position: relative; | |
} | |
#middle:after { | |
content: '.'; | |
display: block; | |
clear: both; | |
visibility: hidden; | |
height: 0; | |
} | |
#container { | |
width: 100%; | |
float: left; | |
overflow: hidden; | |
margin-right: -100%; | |
} | |
#content { | |
padding: 0 20px; | |
} | |
/* Sidebar Left | |
-----------------------------------------------------------------------------*/ | |
#sideLeft { | |
float: left; | |
width: 250px; | |
position: relative; | |
background: #cccccc; | |
left: -250px; | |
} | |
/* Footer | |
-----------------------------------------------------------------------------*/ | |
#footer { | |
height: 100px; | |
background: #cccccc; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment