mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-11 10:40:27 +09:00
doc: Update doxygen documentation
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>
This commit is contained in:
33
doc/that_style/sass/_mixins.scss
Normal file
33
doc/that_style/sass/_mixins.scss
Normal file
@@ -0,0 +1,33 @@
|
||||
@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;
|
||||
}
|
||||
Reference in New Issue
Block a user