-
Notifications
You must be signed in to change notification settings - Fork 44
/
fullscreenstyle.css
72 lines (63 loc) · 953 Bytes
/
fullscreenstyle.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#fullscreenSlideshowContainer .ui {
position: absolute;
font-family: sans-serif;
z-index: 10;
font-size: 2em;
}
#fs-loader,
#fs-prev,
#fs-next,
#fs-close {
background-color: black;
color: white;
font-weight: bold;
cursor: pointer;
line-height: 1em;
}
#fs-close {
top: 1em;
right: 1em;
}
#fs-prev,
#fs-next {
top: 50%;
margin-top: -1em;
}
#fs-prev {
left: 1em;
}
#fs-next {
right: 1em;
}
#fs-loader {
top: 50%;
left: 50%;
height: 1em;
margin-top: -1em;
margin-left: -75px;
display: none;
}
#fs-caption {
bottom: 20px;
text-align: center;
width: 100%;
left: 0;
line-height: 1em;
display: none;
}
#fs-caption span {
background-color: white;
}
#fs-loader,
#fs-prev,
#fs-next,
#fs-close,
#fs-caption span {
padding: 5px 15px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
-o-border-radius: 3px;
-ms-border-radius: 3px;
-khtml-border-radius: 3px;
border-radius: 3px;
}