blob: 1fd06a23db10ee51938958ad6f3e6212672f105a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
.image-slideshow-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.95);
overflow: auto;
z-index: 100
}
.image-slideshow-overlay img {
display: block;
margin: auto
}
.image-slideshow-overlay figcaption {
color: #fff;
opacity: 0.7;
position: absolute;
bottom: 5px;
right: 15px
}
.slideshow-icon {
color: #fff;
position: absolute;
font-size: 2.5em;
opacity: 0.6
}
.slideshow-icon:hover {
opacity: 0.9;
cursor: pointer
}
.slideshow-previous-icon {
left: 10px;
top: 45%
}
.slideshow-next-icon {
right: 10px;
top: 45%
}
.slideshow-close-icon {
right: 10px;
top: 10px;
font-size: 1.4em
}
.slideshow-download-icon {
left: 10px;
bottom: 10px;
font-size: 1.3em
}
|