Skip to content

Instantly share code, notes, and snippets.

@EtienneLem
Created September 16, 2011 13:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EtienneLem/1222124 to your computer and use it in GitHub Desktop.
Save EtienneLem/1222124 to your computer and use it in GitHub Desktop.
Scss utils.
// Scss Utils
// @author EtienneLem
// CSS3 misc
@mixin rounded ( $radius, $prefix:'' ) {
@include prefixes(border-radius, $radius, $prefix);
}
@mixin box-shadow ( $value ) {
@include prefixes(box-shadow, $value);
}
@mixin gradient-top-bottom ( $top, $bottom ) {
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, $bottom), color-stop(1, $top));
background-image: -moz-linear-gradient(center bottom, $bottom 0%, $top 100%);
background-image: -o-linear-gradient($top, $bottom);
}
// Animation
@mixin transition ( $value ) {
@include prefixes(transition, $value);
}
@mixin translate3d ( $value ) {
$action: translate3d($value);
@include transform($action);
}
// Transforms
@mixin skew ( $deg ) {
$action: skew($value);
@include transform($action);
}
@mixin scale ( $value ) {
$action: scale($value);
@include transform($action);
}
@mixin rotate ( $deg ) {
$action: rotate($deg);
@include transform($action);
}
@mixin rotateY ( $deg ) {
$action: rotateY($deg);
@include transform($action);
}
@mixin transform ( $value ) {
@include prefixes(transform, $value);
}
// Utils
@mixin prefixes ( $key, $value, $prefix:'' ) {
$prefixes: -webkit, -khtml, -moz, -ms, -o;
@if $prefix != '' { $prefixes: $prefix }
@each $prefix in $prefixes {
#{$prefix}-#{$key} : $value;
}
@if $prefix == '' { #{$key} : $value; }
}
@mixin noselect() {
@include prefixes(user-select, none);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment