From 01ef61d8fc3e18fe159e98d36414ef0ba92ff2a7 Mon Sep 17 00:00:00 2001 From: Kapil Viren Ahuja Date: Thu, 23 Mar 2017 15:17:03 +0530 Subject: adding the new theme --- .../sass/hipster_cards/mixins/_transparency.scss | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 templates/assets/sass/hipster_cards/mixins/_transparency.scss (limited to 'templates/assets/sass/hipster_cards/mixins/_transparency.scss') diff --git a/templates/assets/sass/hipster_cards/mixins/_transparency.scss b/templates/assets/sass/hipster_cards/mixins/_transparency.scss new file mode 100644 index 0000000..da32b74 --- /dev/null +++ b/templates/assets/sass/hipster_cards/mixins/_transparency.scss @@ -0,0 +1,20 @@ +// Opacity + +@mixin opacity($opacity) { + opacity: $opacity; + // IE8 filter + $opacity-ie: ($opacity * 100); + filter: #{alpha(opacity=$opacity-ie)}; +} + +@mixin black-filter($opacity){ + top: 0; + left: 0; + height: 100%; + width: 100%; + position: absolute; + background-color: rgba(17,17,17,$opacity); + display: block; + content: ""; + z-index: 1; +} \ No newline at end of file -- cgit v1.3.1