Created
November 14, 2015 16:53
-
-
Save lozandier/5828a0bf4b7335ecfa43 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
| // ---- | |
| // Sass (v3.4.14) | |
| // Compass (v1.0.3) | |
| // ---- | |
| html, | |
| body { | |
| margin: 0; | |
| padding: 0; | |
| } | |
| header { | |
| width: 100%; | |
| height: 50px; | |
| background: blue; | |
| $h: &; | |
| @at-root { | |
| body.has-scrolled { | |
| padding-top: 50px; | |
| #{$h} { | |
| position: fixed; | |
| } | |
| } | |
| } | |
| } |
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
| html, | |
| body { | |
| margin: 0; | |
| padding: 0; | |
| } | |
| header { | |
| width: 100%; | |
| height: 50px; | |
| background: blue; | |
| } | |
| body.has-scrolled { | |
| padding-top: 50px; | |
| } | |
| body.has-scrolled header { | |
| position: fixed; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment