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
<h3>%default Ordered List</h3> | |
<ol class='default'> | |
<li>List Item 1</li> | |
<li>List Item 2</li> | |
<li>List Item 3</li> | |
</ol> | |
<h3>%default Unordered List</h3> | |
<ul class='default'> | |
<li>List Item 1</li> | |
<li>List Item 2</li> |
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
@mixin icon($icon, $position:before) { | |
&:#{$position} { | |
@extend %#{$icon}; | |
display: inline-block; | |
font-family: 'fontello'; | |
font-style: normal; | |
font-weight: normal; | |
speak: none; | |
text-align: center; | |
text-decoration: inherit; |
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
* Back to work | |
* The Gently Mad | |
* Happy Monday | |
* ShopTalk | |
* UIE Brain Sparks | |
* Vimcasts | |
* Dorm Room Tycoon | |
* Founders talk | |
* Pixel Recess |
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
// Line height function to quickly and easily calculate values for a baseline or near baseline grid. | |
// eg. padding: lh(.5) 0; | |
$line-height: 24px; | |
@function lh($amount: 1) { | |
@return $line-height * $amount; | |
} |
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
# Some useful Unicode entities | |
# Non-Breaking Space | |
snippet nbs | |
| |
# ← | |
snippet left | |
← | |
# → | |
snippet right | |
→ |
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 Snippets | |
snippet @i | |
@import "${1}"; | |
snippet ext | |
@extend ${1}; | |
snippet inc | |
@include ${1}(${2});${3} | |
snippet @m | |
@media ${1} { | |
${2} |