forked from Serrin/imgLightbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
imglightbox.css
77 lines (69 loc) · 1.47 KB
/
imglightbox.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
73
74
75
76
77
/**
* imglightbox
* @version 1.1.0
* @author Miyako Jones <[email protected]>
* @see https://github.com/miyakoj/
*
* <link href="imglightbox.min.css" rel="stylesheet" type="text/css">
* <script src="imglightbox.min.js"></script>
*/
#imgLightbox {
font-family: Arial, Helvetica, sans-serif !important;
background-image: url('');
background-repeat: no-repeat;
background-size: contain;
background-position: center center;
position: fixed;
top: 0%;
left: 0%;
background-color: rgba(0, 0, 0, 0.85);
color: white;
width: 100%;
height: 100%;
text-align: center;
cursor: pointer;
display: none;
justify-content: center;
align-items: center;
z-index: 9999997;
}
#imgLightbox a:link,
#imgLightbox a:hover,
#imgLightbox a:active,
#imgLightbox a:visited {
text-decoration: none;
}
#imgLightbox-button-area {
cursor: pointer;
position: absolute;
right: 0;
top: 0;
padding: 10px;
color: white;
font-size: 30px;
z-index: 9999999;
}
.imgLightbox-button {
display: inline-block;
filter: alpha(opacity=65);
-moz-opacity: 0.7;
opacity: 0.7;
}
.imgLightbox-button:hover {
filter: alpha(opacity=100);
-moz-opacity: 1;
opacity: 1;
}
#imgLightbox-button-download, #imgLightbox-button-external {
display: none;
color: white !important;
}
#imgLightbox-image-area {
width: 100%;
height: 100%;
padding: 50px;
z-index: 9999998;
}
.lightbox-link {
cursor: pointer;
}