This file contains hidden or 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
// ---- | |
// Sass (v3.4.9) | |
// Compass (v1.0.1) | |
// ---- | |
$colors: ( crimson: "#f00" ); | |
$fancy: ( $colors: "oh so fancy" ); | |
body { | |
color: map-get($fancy, $colors); |
This file contains hidden or 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
source "http://rubygems.org" | |
gem 'compass' | |
gem 'sass-json-vars' |
This file contains hidden or 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
var _data = {} | |
function merge({ white, list }) { | |
Object.assign(_data, { white, list }); | |
} | |
merge({ dat: 'will not be set' }); |
This file contains hidden or 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
// For more information, see | |
// http://nodejs.org/api/process.html#process_process_stdin | |
// Set the encoding. | |
// IMPORTANT: Last I remember Python defaults to ASCII, this is probably | |
// worth verifying if you hit strange issues. | |
process.stdin.setEncoding('utf8'); | |
var chunks = ''; |
This file contains hidden or 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
Browsers: | |
IE: 11, 10, 9, 8 | |
Firefox: 32, 31 | |
Chrome: 37, 36, 35 | |
Safari: 7.1, 7 | |
Opera: 24, 23 | |
iOS: 8, 7.1, 7.0 | |
Android: 4.4, 4.3, 4.1 | |
IE Mobile: 10 |
This file contains hidden or 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
source 'https://rubygems.org' | |
gem "sass-json-vars" | |
gem "sass", "~> 3.3.11" | |
gem "compass", "1.0.0.alpha.21" |
This file contains hidden or 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() { | |
var delay = 1000 / 12; | |
var last = +new Date(); | |
var step = 25; | |
var interval = {}; | |
var getScrollProgress = function() { | |
return (document.body.scrollTop / (document.body.scrollHeight - window.innerHeight)) * 100; | |
}; | |
This file contains hidden or 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
source 'https://rubygems.org' | |
gem 'sass', '3.3.14' | |
gem 'sass-json-vars', '0.3.2' |
This file contains hidden or 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
source 'https://rubygems.org' | |
# Gemfile | |
gem 'sass', '3.3.14' | |
gem 'compass', '~> 1.0.0.rc.1' | |
gem 'sass-globbing', '~> 1.1.1' | |
gem 'sass-json-vars', '~> 0.3.1' | |
gem 'breakpoint-slicer', '~> 1.2' | |
gem 'susy', '~> 2.0.0' |
This file contains hidden or 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
var Menu = require('menu'); | |
var { List, Action } = Menu; | |
React.createClass({ | |
render() { | |
return ( | |
<Menu> | |
<Icon type="menu" /> | |
<List className="column-1-hand"> | |
<Action>Maps</Action> |