Overall Assessment: Tentative - Yes
Reviewer: Adam Kaplan
| <div class="column half"> | |
| <h4>Featured Work</h4> | |
| <ul class="featured-work"> | |
| <li class="featured-work-item"> | |
| <a href="">Title</a> | |
| <p>Description</p> | |
| </li> | |
| <li class="featured-work-item"> | |
| <a href="">Title</a> |
| .button, | |
| a.button, | |
| button, | |
| input[type="submit"], | |
| input[type="button"] { | |
| -moz-appearance: none; | |
| -webkit-appearance: none; | |
| appearance: none; | |
| -moz-border-radius: 3px; | |
| -webkit-border-radius: 3px; |
| .row { | |
| @extend %clearfix; | |
| } |
| <div class="row"> | |
| <div class="column"> | |
| <!-- Your Content --> | |
| </div> | |
| </div> |
| %clearfix { | |
| *zoom: 1; | |
| &:before, &:after { | |
| content: " "; | |
| display: table; | |
| } | |
| &:after { | |
| clear: both; | |
| } | |
| } |
| <div class="row clearfix"> | |
| <div class="column"> | |
| <!-- Your Content --> | |
| </div> | |
| </div> |
| <div class="container"> | |
| <div class="row clearfix"> | |
| <div class="column half"> | |
| <!-- Your Content --> | |
| </div> | |
| <div class="column half"> | |
| <!-- Your Content --> | |
| </div> | |
| </div> | |
| </div> |