I hereby claim:
- I am dustinhorton on github.
- I am dustinhorton (https://keybase.io/dustinhorton) on keybase.
- I have a public key whose fingerprint is 99BF 51DD E943 D373 ED03 1E7B 4AAC 9A7D 7A7C C83F
To claim this, I am signing this object:
| // ---- | |
| // Sass (v3.4.14) | |
| // Compass (v1.0.3) | |
| // ---- | |
| $font-weight---semibold: 600; | |
| $font-weight---light: 300; | |
| $default-webfonts: ( | |
| remind-proxima-nova: ( |
| // ---- | |
| // Sass (v3.4.14) | |
| // Compass (v1.0.3) | |
| // ---- | |
| @function map-fetch($map, $keys...) { | |
| @each $key in $keys { | |
| $map: map-get($map, $key); | |
| } | |
| // ---- | |
| // libsass (v3.2.5) | |
| // ---- | |
| $lava: #d52d24; | |
| $shamrock: #309457; | |
| $brand: #4a89dc; | |
| $violet: #7966ba; | |
| $pitch: #333330; | |
| $thunder: #767676; |
| // ---- | |
| // libsass (v3.2.5) | |
| // ---- | |
| $cols: 3; | |
| @for $i from 1 through $cols { | |
| $index: index($cols, $i); | |
| .col---1 { |
I hereby claim:
To claim this, I am signing this object:
| // ---- | |
| // Sass (v3.4.13) | |
| // Compass (v1.0.3) | |
| // ---- | |
| // ---------------------------------------------------------------------- | |
| // COLOR - TEXT/ICON | |
| // ---------------------------------------------------------------------- | |
| // BRAND COLORS |
| // ---- | |
| // libsass (v3.2.2) | |
| // ---- | |
| $blue: blue; | |
| $colors: | |
| blue #ff0000; | |
| .test { |
| @function em ($px, $font-size: $font-size) { | |
| @return ($px / $font-size) * 1em; | |
| } |
| @mixin triangle($dir, $size, $color) { | |
| border: $size transparent solid; | |
| @if ($dir == "top" or $dir == "up") { | |
| border-bottom-color: $color; | |
| } | |
| @else if ($dir == "right" or $dir == "after") { | |
| border-left-color: $color; | |
| } | |
| @else if ($dir == "bottom" or $dir == "down") { |
| export PATH=/usr/local/bin:$PATH | |
| function get_pwd() { | |
| currdir=`pwd` | |
| echo "${currdir/$HOME/~}" | |
| } | |
| export PS1=' | |
| `get_pwd` | |
| →' |