summaryrefslogtreecommitdiff
path: root/style/plugins/overlay.scss
blob: 94dc431d0619f7b0d433ba048043c9afb1a38061 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#imagelightbox-overlay {
    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;
    }
}