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
<?php | |
$randoms = array(); | |
?> | |
{exp:channel:entries channel="styleguide" disable="categories|category_fields|member_data|pagination|trackbacks" dynamic="no" limit="5" orderby="random"} | |
<?php | |
array_push($randoms, '{entry_id}'); | |
?> | |
{/exp:channel:entries} | |
<ul> |
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
li { | |
@include span-columns(2 of 4); | |
@include nth-omega(2n); | |
@include media($tablet) { | |
@include span-columns(2 of 8); | |
@include nth-omega(4n); | |
// NEED TO REMOVE nth-omega AT 2n HERE, AND AUTO APPLY CORRECT MARGIN-RIGHT | |
} |
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
$visual-grid : true; | |
// --------------------------------------------------------------------------- | |
// Imports | |
@import "bourbon/bourbon"; | |
@import "neat/neat"; | |
@import "neat/neat-helpers"; | |
$landscape: new-breakpoint(min-width 480px 4); |