For my desk and laptop bag:
- Rotring Rapid Pro Ballpoint Pen
- Schmidt EasyFlow 9000 Refill - Medium - Black
- Glides across paper effortlessly. Stock Rotring refill might be better if you’re left handed and/or drag your palm across the paper.
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
.example { | |
color: red; | |
html[data-theme='zappos-redesign'] & { | |
color: blue; | |
} | |
} |
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
// ************************************* | |
// | |
// Helpers | |
// -> Utility functions | |
// | |
// ************************************* | |
// ------------------------------------- | |
// Create Markup | |
// ------------------------------------- |
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
// ---- | |
// libsass (v3.3.2) | |
// ---- | |
@function palette($color) { | |
@each $item in $palette { | |
@if index($item, $color) { | |
@return nth($item, 2); | |
} | |
} |
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) | |
// ---- | |
=respond-to($val, $query: min-width, $media: screen) | |
@media #{$media} and ($query: $val) | |
@content | |
$g-s: 400px |
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) | |
// ---- | |
=respond-to($val, $query: min-width, $media: screen) | |
@media #{$media} and ($query: $val) | |
@content | |
$b-breakpoints: (s: 400px, m: 800px, l: 1200px) |
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) | |
// ---- | |
=respond-to($val, $query: min-width, $media: screen) | |
@media #{$media} and ($query: $val) | |
@content | |
$b-breakpoints: (s: 400px, m: 800px, l: 1200px) |