-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.css
52 lines (52 loc) · 1.11 KB
/
index.css
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
.dialog.dialog-slider-fullscreen {
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.dialog.dialog-slider-fullscreen .fs-swiper-slide {
text-align: center;
position: relative;
background: #222;
white-space: nowrap;
}
.dialog.dialog-slider-fullscreen .fs-swiper-slide:before {
/*vertically aligning small images*/
content: "";
display: inline-block;
width: 1px;
height: 100%;
vertical-align: middle;
}
.dialog.dialog-slider-fullscreen .content {
width: 100%;
height: 100%;
max-width: none;
padding: 0 20px;
border: none;
background: #222;
}
.dialog.dialog-slider-fullscreen .fs-swiper {
height: 100%;
}
/*make image match screen size*/
.dialog.dialog-slider-fullscreen .fs-swiper-container,
.dialog.dialog-slider-fullscreen .content .body {
height: 100%;
}
.dialog.dialog-slider-fullscreen .fs-swiper-container,
.dialog.dialog-slider-fullscreen .fs-swiper-slide,
.dialog.dialog-slider-fullscreen .fs-swiper-image {
vertical-align: middle;
max-height: 100%;
}
.fs-swiper-caption {
position: absolute;
bottom: 0;
right: 0;
padding: 10px;
background: rgba(0,0,0,.5);
color: #fff;
font-size: 13px;
text-align: left;
}