Skip to content

Instantly share code, notes, and snippets.

@WebbizAdmin
Last active March 12, 2016 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WebbizAdmin/f0cb616251f5064d7275 to your computer and use it in GitHub Desktop.
Save WebbizAdmin/f0cb616251f5064d7275 to your computer and use it in GitHub Desktop.
// Meida Queries
@mixin break($args...) {
@if length($args) == 1 {
@media (min-width: nth($args, 1)) {
@content;
}
} @else {
@media (min-width: nth($args, 1)) and (max-width: nth($args, 2)) {
@content;
}
}
}
/// Mixin printing a linear-gradient
// reference Hugo Giraudel | sitepoint
@mixin linear-gradient($direction, $color-stops...) {
// Direction has been omitted and happens to be a color-stop
@if is-direction($direction) == false {
$color-stops: $direction, $color-stops;
$direction: 180deg;
}
background: nth(nth($color-stops, 1), 1);
background: -webkit-linear-gradient(legacy-direction($direction), $color-stops);
background: linear-gradient($direction, $color-stops);
}
// Border radius mixin
@mixin border-radius($radius) {
-webkit-border-radius: $radius;
border-radius: $radius;
background-clip: padding-box; /* stops bg color from leaking outside the border: */
}
// Box shadow
@mixin box-shadow($x, $y, $br, $sr, $color, $inset: false) {
@if $inset {
-webkit-box-shadow:inset $x $y $br $sr $color;
-moz-box-shadow:inset $x $y $br $sr $color;
box-shadow:inset $x $y $br $sr $color;
} @else {
-webkit-box-shadow: $x $y $br $sr $color;
-moz-box-shadow: $x $y $br $sr $color;
box-shadow: $x $y $br $sr $color;
}
}
// Placeholder Text
@mixin placeholder {
&::-webkit-input-placeholder {@content}
&:-moz-placeholder {@content}
&::-moz-placeholder {@content}
&:-ms-input-placeholder {@content}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment