diff options
Diffstat (limited to 'src/client/views/nodes/ImageBox.scss')
-rw-r--r-- | src/client/views/nodes/ImageBox.scss | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/src/client/views/nodes/ImageBox.scss b/src/client/views/nodes/ImageBox.scss index 697f19f0d..497ce96c9 100644 --- a/src/client/views/nodes/ImageBox.scss +++ b/src/client/views/nodes/ImageBox.scss @@ -56,4 +56,23 @@ left: 5%; top: 15%; } -}
\ No newline at end of file +} + +#cf { + position:relative; + width:100%; + margin:0 auto; + } + + #cf img { + position:absolute; + left:0; + -webkit-transition: opacity 1s ease-in-out; + -moz-transition: opacity 1s ease-in-out; + -o-transition: opacity 1s ease-in-out; + transition: opacity 1s ease-in-out; + } + + #cf img.fadeaway:hover { + opacity:0; + }
\ No newline at end of file |