Skip to content

Instantly share code, notes, and snippets.

View andrewjamesford's full-sized avatar

Andrew Ford andrewjamesford

View GitHub Profile
@mixin css-triangle($triangle-size, $triangle-color, $triangle-direction) {
content: "";
display: block;
width: 0;
height: 0;
border: solid $triangle-size;
@if ($triangle-direction == top) {
border-color: $triangle-color transparent transparent transparent;
}
@if ($triangle-direction == bottom) {
@andrewjamesford
andrewjamesford / gist:4141514
Created November 24, 2012 21:46 — forked from hileon/gist:1311735
Sublime Text 2 - Useful Shortcuts

Sublime Text 2 – Useful Shortcuts (Windows)

General

Ctrl+KB toggle side bar
Ctrl+Shift+P command prompt
Ctrl+` python console
Ctrl+N new file

Editing