mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-09 18:04:25 +09:00
This fixes some issues with the new docs and uses a new modern style.
https://github.com/jl-wynen/that_style
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
(cherry picked from commit 5334cb9d55)
34 lines
759 B
SCSS
34 lines
759 B
SCSS
@mixin box-shadow($args...) {
|
|
-moz-box-shadow: $args;
|
|
-webkit-box-shadow: $args;
|
|
-o-box-shadow: $args;
|
|
box-shadow: $args;
|
|
}
|
|
|
|
@mixin border-radius($args...) {
|
|
-moz-border-radius: $args;
|
|
-webkit-border-radius: $args;
|
|
border-radius: $args;
|
|
}
|
|
|
|
@mixin transition($args...) {
|
|
-webkit-transition: $args;
|
|
-moz-transition: $args;
|
|
-o-transition: $args;
|
|
transition: $args;
|
|
}
|
|
|
|
@mixin transition-property($arg) {
|
|
-webkit-transition: $arg;
|
|
-moz-transition: $arg;
|
|
-o-transition: $arg;
|
|
transition: $arg;
|
|
}
|
|
|
|
@mixin transition-duration($arg) {
|
|
-webkit-duration: $arg;
|
|
-moz-duration: $arg;
|
|
-o-duration: $arg;
|
|
duration: $arg;
|
|
}
|