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
// Prefix mixins | |
// ============= | |
// | |
// A set of SASS mixins for abstracting vendor prefixes. | |
@mixin flexbox(){ | |
display: -webkit-box; | |
display: -ms-flexbox; | |
display: flex; | |
display: -webkit-flex; | |
display: -moz-flex; |
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
/* Smartphones (landscape) ----------- */ | |
@media only screen and (min-width : 321px) { | |
/* Styles */ | |
} | |
/* Smartphones (portrait) ----------- */ | |
@media only screen and (max-width : 320px) { | |
/* Styles */ | |
} |