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
var items = new Array; | |
var ul = $('<ul />'); | |
$('.section h2:first-child').each(function(e) { | |
items.push(this); | |
}); | |
$.each(items, function(i, item) { | |
var $item = $(this), |
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
/** | |
* Colour mixer: mix source with a target colour by a % value | |
*/ | |
mix(source, target, ammount) | |
ammount = unit(ammount, '%') | |
unless source is a 'rgba' and target is a 'rgba' | |
error('mix() expects rgb colour values') |
NewerOlder