Skip to content

Instantly share code, notes, and snippets.

@justonefixxxx
Created January 14, 2013 10:25
Show Gist options
  • Save justonefixxxx/4529131 to your computer and use it in GitHub Desktop.
Save justonefixxxx/4529131 to your computer and use it in GitHub Desktop.
2013-11-14
* {
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