Sync plugins from current page

Signed-off-by: Adrian Nöthlich <git@promasu.tech>
This commit is contained in:
2019-09-11 19:08:46 +02:00
parent 85d41e4216
commit 8515ff9587
1847 changed files with 505469 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
/*--------------------------------------------------------------------------------------------
*
* Mixins
*
*--------------------------------------------------------------------------------------------*/
@mixin clearfix() {
&:after {
display: block;
clear: both;
content: "";
}
}
@mixin border-box() {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
@mixin centered() {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
@mixin animate( $properties: 'all' ) {
-webkit-transition: $properties 0.3s ease; // Safari 3.2+, Chrome
-moz-transition: $properties 0.3s ease; // Firefox 4-15
-o-transition: $properties 0.3s ease; // Opera 10.512.00
transition: $properties 0.3s ease; // Firefox 16+, Opera 12.50+
}
@mixin rtl() {
html[dir="rtl"] & {
text-align: right;
@content;
}
}