Created
September 21, 2020 10:47
-
-
Save lexstefan/cf242c9fcf06cd284f6a3db8a6cf45f1 to your computer and use it in GitHub Desktop.
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
// SPECIFIC MOBILE FIRST BREAKPOINT MIXIN FOR SCREENS | |
@mixin bp($args: null) { | |
// CASE IF NO DATA IS PASSED WE SHALL OUTPUT MEDIA QUERY ONLY FOR SCREEN THIS MEANS STYLES WILL BE GLOBALLY AND INHERITABLE BY UPPER BREAKPOINTS | |
@if $args == null { | |
@media screen { | |
@content; | |
} | |
} | |
// CASE IF DATA IS PASSED WE GENERATE BREAKPOINT FOR PASSED BREAKPOINT | |
@else { | |
@media screen and (min-width: $args) { | |
@content; | |
} | |
} | |
} | |
// BOX SHADOW | |
@mixin box-shadow($args...) { | |
-webkit-box-shadow: $args; | |
-moz-box-shadow: $args; | |
-ms-box-shadow: $args; | |
box-shadow: $args; | |
} | |
// TRANSFORM | |
@mixin transform($transforms) { | |
-webkit-transform: $transforms; | |
-moz-transform: $transforms; | |
-ms-transform: $transforms; | |
transform: $transforms; | |
} | |
// TRANSITION | |
@mixin transition($transitions) { | |
-webkit-transition: $transitions; | |
-moz-transition: $transitions; | |
-ms-transition: $transitions; | |
transition: $transitions; | |
} | |
@mixin clearfix() { | |
&::after { | |
content: ''; | |
display: table; | |
clear: both; | |
} | |
} | |
// KEYFRAMES MIXIN | |
@mixin keyframes($keyframes-name) { | |
@-webkit-keyframes #{$keyframes-name} { | |
@content; | |
} | |
@-moz-keyframes #{$keyframes-name} { | |
@content; | |
} | |
@-o-keyframes #{$keyframes-name} { | |
@content; | |
} | |
@keyframes #{$keyframes-name} { | |
@content; | |
} | |
} | |
// ANIMATION MIXIN | |
@mixin animation($args...) { | |
-webkit-animation: $args; | |
-moz-animation: $args; | |
-o-animation: $args; | |
animation: $args; | |
} | |
// PLACEHOLDER | |
@mixin placeholder { | |
&::-webkit-input-placeholder { | |
@content | |
} | |
&:-moz-placeholder { | |
@content | |
} | |
&::-moz-placeholder { | |
@content | |
} | |
&:-ms-input-placeholder { | |
@content | |
} | |
} | |
// USERSELECT | |
@mixin user-select($args...) { | |
-webkit-user-select: $args; | |
-khtml-user-select: $args; | |
-moz-user-select: $args; | |
-ms-user-select: $args; | |
user-select: $args; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment