diff --git a/css/lightbox.css b/css/lightbox.css index 60cf695d..1eb866d5 100644 --- a/css/lightbox.css +++ b/css/lightbox.css @@ -208,3 +208,21 @@ body:after { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); opacity: 1; } + +.lb-download{ + border-radius: 5px; + display: block; + height: 40px; + width: 40px; + background: url(../img/arrow-down.png) 50% 50% no-repeat; + background-color: rgba(0,0,0,.5); + transition: .2s; + opacity: .3; + position: absolute; + bottom: 15px; + right: 15px; + z-index: 11; +} +.lb-download:hover{ + opacity: 1; +} diff --git a/img/arrow-down.png b/img/arrow-down.png new file mode 100644 index 00000000..d530112a Binary files /dev/null and b/img/arrow-down.png differ