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
<ul class="items"> | |
<li class="item">Thing 1</li> | |
<li class="item">Thing 2</li> | |
<li class="item">Thing 3</li> | |
<li class="item">Thing 4</li> | |
</ul> |
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
// | |
// Paths | |
// | |
var basePaths = { | |
src: 'source/', | |
dest: 'source/' | |
}; | |
var paths = { |
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
$base-font-size: 16px; | |
$base-line-height: 1.5; | |
// this value may vary for each font | |
// unitless value relative to 1em | |
$cap-height: 0.68; | |
@mixin baseline($font-size, $scale: 2) { |
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
tynt.com, intellitxt.com, snap.com, kontera.com, AdGardener.com, apture.com, wibiya.com, doubleclick.net, getconnected.southwestwi-fi.com, d1.openx.org, meebo.com, addthis.com, serving-sys.com, po.st, cdn.taboolasyndication.com, exitjunction.com, doubleclick.net, googleadservices.com, sharethis.com, luminate.com, rts.pgmediaserve.com, cacheserve.eurogrand.com |
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 class="icn-toggle"></span> |
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="alert alert--error">lorem ipsum asdflh asdfklj hsalfs</div> | |
<div class="alert alert--success">lorem ipsum asdflh asdfklj hsalfs</div> | |
<div class="alert alert--info">lorem ipsum asdflh asdfklj hsalfs</div> | |
<div class="alert alert--warn">lorem ipsum asdflh asdfklj hsalfs</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
<?php | |
/** | |
* Implements theme_menu_tree__[MENU NAME]. | |
*/ | |
function [THEME NAME]_menu_tree__[MENU NAME]($variables) { | |
global $level; | |
$class = ($level == 1) ? 'topnav' : 'subnav'; | |
return '<ul class="' . $class . '">' . $variables['tree'] . '</ul>'; |
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
// ---- | |
// libsass (v3.1.0) | |
// ---- | |
$animation-name: colors; | |
// Add or Remove stops easily | |
$stops: ( | |
25%: #3BD27A, |
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="grid-container"> | |
<ul class="media-grid media-grid--2"> | |
<li>Grid Item</li> | |
<li>Grid Item</li> | |
<li>Grid Item</li> | |
<li>Grid Item</li> | |
<li>Grid Item</li> | |
<li>Grid Item</li> | |
</ul> |