/**
 * imglightbox.js
 * @version 1.0.0
 * @author Ferenc Czigler <serrin@t-email.hu>
 * @see https://github.com/Serrin/
 *
 * <link href="imglightbox.css" rel="stylesheet" type="text/css">
 * <script src="imglightbox.js"></script>
 */

#imgLightbox {
    background-image: url('');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    position: fixed;
    top: 0%;
    left: 0%;
    background-color: black;
    color: white;
    width: 100%;
    height: 100%;
    text-align: center;
    cursor: pointer;
    display: none;
    z-index: 9999998;
}

#imgLightbox-button {
    cursor: pointer;
    display: inline-block;
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
    position: fixed;
    right: 15px;
    top: 0px;
    padding: 20px;
    color: white;
    font-size: 40px;
    z-index: 9999999;
}

#imgLightbox-button:hover {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}