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
| <div class="container"> | |
| <div id="header"> | |
| <h1>Welcome to Compass!</h1> | |
| <ul id="site-actions"> | |
| <li><a href="#">Login</a></li> | |
| <li><a href="#">Register</a></li> | |
| <li><a href="#">About Us</a></li> | |
| </ul> | |
| </div> | |
| <div id="navigation"> |
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
| div#foo | |
| font-style: italic | |
| em, a | |
| font-weight: bold |
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
| div#foo { font-style: italic; } | |
| div#foo em, div#foo a { font-weight: bold; } |
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
| !attention_getting_color = #EBA933 | |
| h1 | |
| font-color = !attention_getting_color | |
| .registration-box | |
| background-color = !attention_getting_color |
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
| =enlarged-text | |
| font-weight: bold | |
| text-size: 15px |
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
| span.important | |
| +enlarged-text |
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
| =hanging-indent(!indentation) | |
| text-indent = -!indentation | |
| padding-left = !indentation | |
| =float-container | |
| +clearfix | |
| div | |
| float: left | |
| .clear | |
| clear: both |
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
| div#widgets | |
| +float-container | |
| p.description | |
| +hanging-indent(2em) |
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
| @import blueprint/screen.sass | |
| @import blueprint/modules/scaffolding.sass | |
| @import compass/reset.sass | |
| +blueprint-typography("body.blueprint") | |
| body.blueprint | |
| +blueprint-scaffolding | |
| .container | |
| +container |
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
| body#index | |
| #header | |
| +column(24) | |
| h1 | |
| :float left | |
| #site-actions | |
| :float right | |
| +horizontal-list |