Skip to content

Instantly share code, notes, and snippets.

View bubbleheadinc's full-sized avatar
🤓

SV bubbleheadinc

🤓
  • DevMethods
View GitHub Profile
@bubbleheadinc
bubbleheadinc / gist:8337386
Last active January 2, 2016 17:29
compass extend warning issue
.class{
@include breakpoint(wide){
@include span-columns(4);
}
}
.anotherClass{
@extend .class;
@include breakpoint(wide){
@include omega;

Contract Killer 3

Revised date: 07/11/2012

Between us [company name] and you [customer name]

Summary:

We’ll always do our best to fulfil your needs and meet your expectations, but it’s important to have things written down so that we both know what’s what, who should do what and when, and what will happen if something goes wrong. In this contract you won’t find any complicated legal terms or long passages of unreadable text. We’ve no desire to trick you into signing something that you might later regret. What we do want is what’s best for both parties, now and in the future.

@bubbleheadinc
bubbleheadinc / gist:5725438
Created June 6, 2013 22:15
Mixin loop to spit out span classes based on # of grid columns for JustifyGrid.com SCSS
@mixin grid-spans($col-span){
@while $col-span > 0{
.grid-span-#{$col-span}{
width: grid-span($col-span);
}
$col-span: $col-span - 1;
}
}