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
async | |
autocomplete | |
autofocus | |
autoplay | |
border | |
challenge | |
checked | |
compact | |
contenteditable | |
controls |
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
# get nvm | |
git clone git://github.com/creationix/nvm.git ~/nvm | |
# activate nvm | |
echo "source ~/nvm/nvm.sh" >> ~/.bashrc | |
source ~/.bashrc |
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
@charset "UTF-8";a,ins,u{text-decoration:none}pre,textarea{overflow:auto}pre,pre code{white-space:pre}a,pre code{background-color:transparent}[colspan="1"],td,th{text-align:left}.img,[rowspan],img,select{vertical-align:middle}.bullet-list>li,body,sub,sup{position:relative}.button:active,.button:focus,a:active,a:hover,select :focus{outline:0}/*! normalize.css v3.0.2 | MIT License | git.io/normalize */body{margin:0;background:#FFF;color:#333;overflow-x:hidden}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{color:#4374AE}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img,legend{border:0}svg:not(:root){overflow:hidden}figur |
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
@charset "UTF-8"; | |
/** | |
* Base Settings | |
*/ | |
/** | |
* Modules | |
*/ | |
/** | |
* Screens | |
*/ |
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
// ---- | |
// Sass (v3.4.14) | |
// Compass (v1.0.3) | |
// ---- | |
/* | |
type-of(100px) => #{type-of(100px)} | |
type-of(asdf) => #{type-of(asdf)} | |
type-of(true) => #{type-of(true)} | |
type-of(#fff) => #{type-of(#fff)} |
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
// ---- | |
// Sass (v3.4.14) | |
// Compass (v1.0.3) | |
// ---- | |
$test: (red: #F00, other: #FFF); | |
.color { | |
content: #{map-get($test, red)}; | |
content: #{map-get($test, other)}; |
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
// ---- | |
// Sass (v3.4.11) | |
// Compass (v1.0.3) | |
// ---- | |
@import "compass/css3"; | |
@function remove($list, $value, $recursive: false) { | |
$result: (); |
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
// ---- | |
// Sass (v3.4.5) | |
// Compass (v1.0.1) | |
// ---- | |
@function get($key, $map: null) { | |
@if $map == null { | |
$map: $default-settings; | |
} |
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
// ---- | |
// Sass (v3.4.5) | |
// Compass (v1.0.1) | |
// ---- | |
@function map-deep-merge($map1, $map2) { | |
$return: $map1; | |
@each $key, $value in $map2 { | |
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
// ---- | |
// Sass (v3.4.5) | |
// Compass (v1.0.1) | |
// ---- | |
$gemini-spacing: ( | |
type: ( | |
"push": "margin", | |
"pad": "padding" | |
), |
NewerOlder