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
html, html * { | |
margin:0; | |
padding:0; | |
border:0; | |
outline:0; | |
@include box-sizing(border-box); | |
} | |
html { |
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
// injectObjectPath | |
// For a deep-object path, creates new or returns existing deep-object | |
// Params: | |
// obj: the lowest level object | |
// path: dot-delimited deep-object path | |
// Returns: | |
// deep-object created or found | |
// Usage: | |
// var integerValidator = injectObjectPath(window, 'rr.validators.integer'); | |
// Notes: |
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 centeredRange(number, length) { | |
// Find starting number as about half of the range length to the left (favoring forward) | |
number += 1 - Math.ceil(length / 2); | |
// Find ending number as a length's distance away, minus 1 because the starting number counts towards the length | |
return [number, number + length - 1]; | |
} | |
function boundRange(range, min, max) { | |
// If end > max, shift range backward by the difference | |
var start = range[0] + Math.min(max - range[1], 0); |
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
<!doctype html> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title></title> | |
<link rel="stylesheet" href="theme/css/styles.css"> |
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
/* Personal Reset (to be used after normalize.css) */ | |
html, html * | |
{ | |
margin:0; | |
padding:0; | |
border:0; | |
outline:0; | |
-moz-box-sizing:border-box; | |
-webkit-box-sizing:border-box; |
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
rm -rf t && mkdir t && mogrify -gravity center -resize 150x150^ -crop 150x150+0+0 -format jpg -quality 80 -strip -interlace plane -path t *.* |
NewerOlder