Skip to content

Instantly share code, notes, and snippets.

View ntassone's full-sized avatar

Nick Tassone ntassone

View GitHub Profile
@ntassone
ntassone / responsive-subnav.scss
Created January 28, 2014 21:13
Make a responsive fixed-with subnav.
//Requires bourbon for media query
$page-width: 1020px;
$subnav-width: 260px;
$gutter: 65px;
.wrapper {
&.has-subnav {
max-width: $page-width;
> aside {
@ntassone
ntassone / ol-counter.scss
Last active May 11, 2017 20:11
A more flexible order list with a counter.
ol {
list-style: none;
counter-reset: li;
li {
counter-increment: li;
&:before {
content: counter(li) '.';
//Decimal follows count
}
}