1
0
Fork 0
docsearch/docs/source/assets/stylesheets/_mixin.scss
2018-02-07 11:43:36 +01:00

24 lines
No EOL
638 B
SCSS

@mixin position($top: null, $right: null, $bottom: null, $left: null) {
top: $top;
right: $right;
bottom: $bottom;
left: $left; }
@mixin keyframes($animation-name) {
@-webkit-keyframes #{$animation-name} {
@content; }
@-moz-keyframes #{$animation-name} {
@content; }
@-ms-keyframes #{$animation-name} {
@content; }
@-o-keyframes #{$animation-name} {
@content; }
@keyframes #{$animation-name} {
@content; } }
@mixin placeholder {
&::-webkit-input-placeholder {@content}
&:-moz-placeholder {@content}
&::-moz-placeholder {@content}
&:-ms-input-placeholder {@content}
}