Last active
December 21, 2015 05:18
-
-
Save elisechant/6255526 to your computer and use it in GitHub Desktop.
Dependency management with CSS import
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
| // import third party CSS | |
| // ignored by sass compiler | |
| @import url("http://yui.yahooapis.com/pure/0.2.1/pure-min.css"); | |
| // CSS import with media queries | |
| // ignored by sass compiler | |
| @import url('landscape.css') screen and (orientation:landscape); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment