Last active
February 24, 2016 15:58
-
-
Save jdsteinbach/009cd93755c60b877541 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
<h1>Top Tier Title</h1> | |
<h2>2nd Tier Title</h2> | |
<h3>3rd Tier Title</h3> | |
<h3>3rd Tier Title</h3> | |
<h3>3rd Tier Title</h3> | |
<h2>2nd Tier Title</h2> | |
<h3>3rd Tier Title</h3> | |
<h3>3rd Tier Title</h3> | |
<h3>3rd Tier Title</h3> | |
<h2>2nd Tier Title</h2> | |
<h3>3rd Tier Title</h3> | |
<h3>3rd Tier Title</h3> | |
<h3>3rd Tier Title</h3> |
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.21) | |
// Compass (v1.0.3) | |
// ---- | |
@mixin generate-outline($reset-element: body, $list-style: decimal) { | |
$counter: unique-id(); | |
counter-increment: $counter; | |
&::before { | |
content: counter($counter, $list-style)'. '; | |
} | |
@at-root { | |
#{$reset-element} { | |
counter-reset: $counter; | |
} | |
} | |
} | |
h2 { | |
@include generate-outline(h1, upper-alpha); | |
} | |
h3 { | |
@include generate-outline(h2); | |
} |
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
h2 { | |
counter-increment: ugcutgndq; | |
} | |
h2::before { | |
content: counter(ugcutgndq,upper-alpha) ". "; | |
} | |
h1 { | |
counter-reset: ugcutgndq; | |
} | |
h3 { | |
counter-increment: ugcutgndu; | |
} | |
h3::before { | |
content: counter(ugcutgndu,decimal) ". "; | |
} | |
h2 { | |
counter-reset: ugcutgndu; | |
} |
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
<h1>Top Tier Title</h1> | |
<h2>2nd Tier Title</h2> | |
<h3>3rd Tier Title</h3> | |
<h3>3rd Tier Title</h3> | |
<h3>3rd Tier Title</h3> | |
<h2>2nd Tier Title</h2> | |
<h3>3rd Tier Title</h3> | |
<h3>3rd Tier Title</h3> | |
<h3>3rd Tier Title</h3> | |
<h2>2nd Tier Title</h2> | |
<h3>3rd Tier Title</h3> | |
<h3>3rd Tier Title</h3> | |
<h3>3rd Tier Title</h3> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment