aboutsummaryrefslogtreecommitdiffstats
path: root/docs/com/css/theme/template/mixins.scss
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2016-06-01 14:42:03 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-06-01 14:42:03 +0000
commita574679f7b2636e74e6a262f4badad0445d10c3a (patch)
tree466429721c3454a9236b033a788ca72f9f4f4507 /docs/com/css/theme/template/mixins.scss
parent70b96b8719b48c51b59182162fe8e018c55e7364 (diff)
parentbb522c6efd9a02e611014038566b15feb28da0c8 (diff)
Merge "Add framework for presentations"
Diffstat (limited to 'docs/com/css/theme/template/mixins.scss')
-rwxr-xr-xdocs/com/css/theme/template/mixins.scss29
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/com/css/theme/template/mixins.scss b/docs/com/css/theme/template/mixins.scss
new file mode 100755
index 00000000..e0c56069
--- /dev/null
+++ b/docs/com/css/theme/template/mixins.scss
@@ -0,0 +1,29 @@
+@mixin vertical-gradient( $top, $bottom ) {
+ background: $top;
+ background: -moz-linear-gradient( top, $top 0%, $bottom 100% );
+ background: -webkit-gradient( linear, left top, left bottom, color-stop(0%,$top), color-stop(100%,$bottom) );
+ background: -webkit-linear-gradient( top, $top 0%, $bottom 100% );
+ background: -o-linear-gradient( top, $top 0%, $bottom 100% );
+ background: -ms-linear-gradient( top, $top 0%, $bottom 100% );
+ background: linear-gradient( top, $top 0%, $bottom 100% );
+}
+
+@mixin horizontal-gradient( $top, $bottom ) {
+ background: $top;
+ background: -moz-linear-gradient( left, $top 0%, $bottom 100% );
+ background: -webkit-gradient( linear, left top, right top, color-stop(0%,$top), color-stop(100%,$bottom) );
+ background: -webkit-linear-gradient( left, $top 0%, $bottom 100% );
+ background: -o-linear-gradient( left, $top 0%, $bottom 100% );
+ background: -ms-linear-gradient( left, $top 0%, $bottom 100% );
+ background: linear-gradient( left, $top 0%, $bottom 100% );
+}
+
+@mixin radial-gradient( $outer, $inner, $type: circle ) {
+ background: $outer;
+ background: -moz-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
+ background: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%,$inner), color-stop(100%,$outer) );
+ background: -webkit-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
+ background: -o-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
+ background: -ms-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
+ background: radial-gradient( center, $type cover, $inner 0%, $outer 100% );
+} \ No newline at end of file