summaryrefslogtreecommitdiff
path: root/style/plugins/overlay.scss
blob: edbc05aef04d901ca760267d7048630fc76b31a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#imagelightbox-overlay {
    background: #fff;
    background: rgba(255, 255, 255, .9);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9998;
    animation: fade-in .25s linear;
}

@keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}