summaryrefslogtreecommitdiff
path: root/style/plugins/caption.scss
blob: fec209369be5078792999b0be2dd4c0c9a6e9e77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#imagelightbox-caption {
    background-color: #666;
    bottom: 0;
    color: #fff;
    left: 0;
    padding: 10px;
    position: fixed;
    right: 0;
    text-align: center;
    z-index: 10001;
    animation: fade-in .25s linear;
}

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