Created
June 2, 2014 09:03
-
-
Save TorbenL/cfe63ab651374f63c7c4 to your computer and use it in GitHub Desktop.
standard sass mixins
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
@mixin bp($width) { | |
@media screen and (max-width: $width){ | |
@content; | |
} | |
} | |
@mixin bpmin($width) { | |
@media screen and (min-width: $width){ | |
@content; | |
} | |
} | |
@mixin opacity($opacity: 1) { | |
opacity: $opacity; | |
$opacity-ie: $opacity * 100; | |
filter: alpha(opacity=$opacity-ie); //IE8 | |
} | |
@mixin transition($transition_seconds: 0.5s, $transition_mode: all, $transition_effect: ease-in-out) { | |
-webkit-transition: $transition_mode $transition_seconds $transition_effect; | |
-moz-transition: $transition_mode $transition_seconds $transition_effect; | |
-o-transition: $transition_mode $transition_seconds $transition_effect; | |
transition: $transition_mode $transition_seconds $transition_effect; | |
} | |
@mixin position($position: absolute, $top: auto, $right: auto, $bottom: auto, $left: auto) { | |
position: $position; | |
top: $top; | |
right: $right; | |
bottom: $bottom; | |
left: $left; | |
} | |
@mixin absolute($top: auto, $right: auto, $bottom: auto, $left: auto) { | |
@include position(absolute, $top, $right, $bottom, $left); | |
} | |
@mixin fixed($top: auto, $right: auto, $bottom: auto, $left: auto) { | |
@include position(fixed, $top, $right, $bottom, $left); | |
} | |
@mixin rounded($radius: 50%) { | |
-webkit-border-radius: $radius; | |
-moz-border-radius: $radius; | |
border-radius: $radius; | |
} | |
@mixin vertical-align { | |
position: relative; | |
top: 50%; | |
-webkit-transform: translateY(-50%); | |
-ms-transform: translateY(-50%); | |
transform: translateY(-50%); | |
} | |
@mixin text-truncate { | |
overflow: hidden; | |
text-overflow: ellipsis; | |
white-space: nowrap; | |
} | |
@mixin button($background: #000, $color: #fff, $background_hover: #fff, $color_hover: #000) { | |
display: inline-block; | |
line-height: 1; | |
padding: 10px 15px; | |
text-align: center; | |
margin: 5px 0px; | |
border-radius: 2px; | |
text-decoration: none; | |
background: $background; | |
color: $color; | |
&:hover { | |
background: $background_hover; | |
color: $color_hover; | |
} | |
} | |
@mixin slider-circle($size: 10px, $color: #fff, $active: #eee, $margin: 5px) { | |
div { | |
display: inline; | |
a { | |
background: $color; | |
width: $size; | |
height: $size; | |
margin: 0px $margin; | |
float: left; | |
display: block; | |
border-radius: 50%; | |
overflow: hidden; | |
text-indent: 99px; | |
box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); | |
} | |
a.active, a:hover { | |
background: $active; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment