Skip to content

Instantly share code, notes, and snippets.

View CaitW's full-sized avatar

Caitlin CaitW

View GitHub Profile
@CaitW
CaitW / iphone.html
Last active December 1, 2015 16:17
SCSS IPhone
<div id="iphone">
<div class="camera"></div>
<div class="speaker"></div>
<div class="screen"></div>
<div class="button"></div>
</div>
@CaitW
CaitW / sort_by_color.js
Created October 2, 2015 14:53
Sort GitHub Labels by Color
var colorObject = {};
$(".label-link").each(function (index) {
var color = $(this).css("background-color");
if(typeof colorObject[color] == "undefined")
{
colorObject[color] = [];
}