diff options
author | B Mathis <brandon@imathis.com> | 2009-11-05 21:34:41 -0600 |
---|---|---|
committer | B Mathis <brandon@imathis.com> | 2009-11-05 21:34:41 -0600 |
commit | f7700443ece4537c252b10a7463d12fd1725f40a (patch) | |
tree | 9eefa52f5435bdfb7fd86984ee7ae3ed518b4f5f /source/stylesheets/library/_opacity.sass | |
parent | 145f81046bc5881d7da86b05c8b92862b63f8080 (diff) | |
download | my_new_personal_website-f7700443ece4537c252b10a7463d12fd1725f40a.tar.xz my_new_personal_website-f7700443ece4537c252b10a7463d12fd1725f40a.zip |
moved stylesheets
Diffstat (limited to 'source/stylesheets/library/_opacity.sass')
-rw-r--r-- | source/stylesheets/library/_opacity.sass | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/source/stylesheets/library/_opacity.sass b/source/stylesheets/library/_opacity.sass deleted file mode 100644 index f8d2a056..00000000 --- a/source/stylesheets/library/_opacity.sass +++ /dev/null @@ -1,18 +0,0 @@ -//** - Provides cross-browser css opacity. - @param !opacity - A number between 0 and 1, where 0 is transparent and 1 is opaque. -=opacity(!opacity) - :opacity= !opacity - :-moz-opacity= !opacity - :-khtml-opacity= !opacity - :-ms-filter= "progid:DXImageTransform.Microsoft.Alpha(Opacity=" + round(!opacity*100) + ")" - :filter= "alpha(opacity=" + round(!opacity*100) + ")" - -// Make an element completely transparent. -=transparent - +opacity(0) - -// Make an element completely opaque. -=opaque - +opacity(1) |