
This file contains 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
<html> | |
<head> | |
<link rel="stylesheet" href="stylesheets/screen.css" | |
type="text/css" media="screen, projection"> | |
</head> | |
<body class="content"> | |
<div class="container"> | |
<div id="header"> | |
This is the header | |
</div> | |
<div id="context-menu"> | |
This is the left side | |
</div> | |
<div id="content"> | |
This is the content of the page | |
</div> | |
<div id="some-ads-and-stuff"> | |
This is the right side | |
</div> | |
<div id="footer"> | |
This is the footer | |
</div> | |
</div> | |
</body> | |
</html> |
This file contains 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
@import compass/reset.sass | |
@import blueprint/modules/grid.sass | |
body.content | |
.container | |
+container | |
#header, #footer | |
+column(24) | |
#context-menu | |
+column(5) | |
#content | |
+column(11) | |
#some-ads-and-stuff | |
+column(8, last) |
This file contains 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
=three-column(!header, !left, !center, !right, !footer) | |
#{!header}, #{!footer} | |
+column(24) | |
#{!left} | |
+column(5) | |
#{!center} | |
+column(11) | |
#{!right} | |
+column(8, last) |
This file contains 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
body.content | |
.container | |
+container | |
+three-column("#header", "#context-menu", "#content", "#some-ads-and-stuff", "#footer") |
No comments:
Post a Comment