mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2024-12-27 21:21:22 +01:00
31 lines
598 B
SCSS
31 lines
598 B
SCSS
|
@mixin vendorize($property, $value) {
|
||
|
@each $prefix in -webkit-, -moz-, -ms-, -o-, '' {
|
||
|
#{$prefix}#{$property}: $value;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@mixin clear() {
|
||
|
&:before, &:after {
|
||
|
content: "\0020";
|
||
|
display: block;
|
||
|
height: 0;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
&:after {
|
||
|
clear: both;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@mixin hoverActiveFocus($property, $value) {
|
||
|
&:hover, &:active, &:focus {
|
||
|
#{$property}: $value;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@mixin linkColor($color) {
|
||
|
color: $color;
|
||
|
|
||
|
&:hover, &:active, &:focus {
|
||
|
color: lighten($color, $link-lighten-amount);
|
||
|
}
|
||
|
}
|