Last active
May 13, 2016 19:52
-
-
Save KCreate/49e83fcd660d104cb2963452ccbfb1b9 to your computer and use it in GitHub Desktop.
Exponential decay headers in scss
This file contains hidden or 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
$decrease: 4; | |
$initial: 28; | |
@for $i from 1 through 6 { | |
> h#{$i} { | |
// Formula: https://www.desmos.com/calculator/dhrvkbio8f | |
font-size: 1px * ($initial - (2 * $decrease)) + (pow($decrease, 2) / pow(2, $i)); | |
} | |
@if $i < 6 { | |
> h#{$i} + h#{$i+1} { | |
margin-top: -12px; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment