This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$colors: ( | |
// Basic colors | |
black: rgb(34, 34, 34), | |
white: rgb(255, 255, 255), | |
grey: rgb(245, 245, 245), | |
// Text styles | |
default-text-color: rgb(34, 34, 34), | |
dimmed-text-color: rgb(178, 178, 178), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@function rem($value) { | |
@return ($value / 10) * 1rem; | |
} | |
@mixin hardware-accelerate() { | |
transform: rotateZ(0); | |
} | |
@mixin clearfix() { | |
overflow: hidden; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$breaks: ( | |
"small": (min: 0em, max: 34.99em), | |
"normal": (min: 35em, max: 47.99em), | |
"wide": (min: 48em, max: 64.99em), | |
"widest": (min: 65em, max: null) | |
); | |
@mixin only-responds-to($breakpoint, $portrait: false) { | |
$myBreakpoint: map-get($breaks, $breakpoint); | |
$myMin: map-get($myBreakpoint, min); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* HTML5 Sortable jQuery Plugin | |
* http://farhadi.ir/projects/html5sortable | |
* | |
* Copyright 2012, Ali Farhadi | |
* Released under the MIT license. | |
*/ | |
(function($) { | |
var dragging, placeholders = $(); | |
$.fn.sortable = function(options) { |