Skip to content

Instantly share code, notes, and snippets.

@tBaxter
tBaxter / gist:5556564
Last active December 17, 2015 05:18
Connecting SASS @content named media queries to JS.
body {
&:after { display: none; }
@include breakpoint(s) { &:after { content: 'small'; } };
@include breakpoint(m) { &:after { content: 'medium'; } };
@include breakpoint(l) { &:after { content: 'large'; } };
}
@tBaxter
tBaxter / gist:4646085
Created January 27, 2013 03:25
Simple Django form.as_p styling I use
.boxedform {
border:1px solid $base_alt2;
margin-bottom:1em;
@include radius(.5em);
> h2 {padding:.5em 10px 0; color:$accent_alt; font-weight:bold; text-transform: uppercase}
p {
border-bottom:1px dotted $base_alt2;
padding:.5em 0;
margin-bottom:0;