-
Notifications
You must be signed in to change notification settings - Fork 1
/
sp-gallery.css
90 lines (79 loc) · 1.41 KB
/
sp-gallery.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
78
79
80
81
82
83
84
85
86
87
88
/*******photo gallery******/
.photo-gallery-wrap {
overflow: hidden;
margin-right: -30px;
}
.thumbnail {
display: inline-block;
width: 100%;
height: 100px;
background-position: center center !important;
text-indent: -9999px;
}
.thumbnailHidden {
display:none;
}
.showMoreWrap {
clear:both;
display:block;
}
#showmore {
color:#fff;
}
#showmore.fetching {
background:#AAD3AA;
border:#9AC39A;
}
.thumbnail-wrap {
margin-bottom: 25px;
}
.thumbnail-wrap.col-lg-3 {
padding-left:0;
padding-right: 30px;
}
@media(max-width:387px){
.thumbnail-wrap.col-lg-3 {
padding-right: 15px;
}
.col-xxs-6 {
width:50%;
}
#showmore {
display:block;
}
}
@media(max-width:240px){
.col-xxxs-12 {
width:100%;
}
}
/* overlay at start */
.mfp-fade.mfp-bg {
opacity: 0;
-webkit-transition: all 0.15s ease-out;
-moz-transition: all 0.15s ease-out;
transition: all 0.15s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
opacity: 0;
}
/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
opacity: 0;
-webkit-transition: all 0.15s ease-out;
-moz-transition: all 0.15s ease-out;
transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
opacity: 0;
}