Created
May 15, 2012 11:19
-
-
Save iamstarkov/2700940 to your computer and use it in GitHub Desktop.
basic layout
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
/** | |
* basic layout | |
*/ | |
/* colors */ | |
#header, | |
#footer { | |
background-color: #f1f1f1; | |
} | |
#main-wrap { | |
background-color: #D9D9D9; | |
} | |
#sidebar { | |
background-color: #d2d2d2; | |
} | |
#content-wrap { | |
background-color: #c5c5c5; | |
} | |
/* sizes */ | |
#main-wrap > div { | |
min-height: 450px; | |
} | |
#header, | |
#footer { | |
min-height: 40px; | |
} | |
/* layout */ | |
#main-wrap { | |
padding-left: 30%; | |
position: relative; | |
} | |
#sidebar { | |
position: absolute; | |
left: 0; | |
top: 0; | |
width: 30%; | |
} | |
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
<!-- content to be placed inside <body>…</body> --> | |
<div id="header">Header</div> | |
<div id="main-wrap"> | |
<div id="sidebar">Left Nav</div> | |
<div id="content-wrap">Content</div> | |
</div> | |
<div id="footer">Footer</div> |
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
{"view":"separate","fontsize":"100","seethrough":"1","prefixfree":"1","page":"result"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment