1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,150 @@ |
1 |
+/*! |
|
2 |
+ * Justified Gallery - v3.6.1 |
|
3 |
+ * http://miromannino.github.io/Justified-Gallery/ |
|
4 |
+ * Copyright (c) 2015 Miro Mannino |
|
5 |
+ * Licensed under the MIT license. |
|
6 |
+ */ |
|
7 |
+@-webkit-keyframes justified-gallery-show-caption-animation { |
|
8 |
+ from { |
|
9 |
+ opacity: 0; |
|
10 |
+ } |
|
11 |
+ to { |
|
12 |
+ opacity: 0.7; |
|
13 |
+ } |
|
14 |
+} |
|
15 |
+@-moz-keyframes justified-gallery-show-caption-animation { |
|
16 |
+ from { |
|
17 |
+ opacity: 0; |
|
18 |
+ } |
|
19 |
+ to { |
|
20 |
+ opacity: 0.7; |
|
21 |
+ } |
|
22 |
+} |
|
23 |
+@-o-keyframes justified-gallery-show-caption-animation { |
|
24 |
+ from { |
|
25 |
+ opacity: 0; |
|
26 |
+ } |
|
27 |
+ to { |
|
28 |
+ opacity: 0.7; |
|
29 |
+ } |
|
30 |
+} |
|
31 |
+@keyframes justified-gallery-show-caption-animation { |
|
32 |
+ from { |
|
33 |
+ opacity: 0; |
|
34 |
+ } |
|
35 |
+ to { |
|
36 |
+ opacity: 0.7; |
|
37 |
+ } |
|
38 |
+} |
|
39 |
+@-webkit-keyframes justified-gallery-show-entry-animation { |
|
40 |
+ from { |
|
41 |
+ opacity: 0; |
|
42 |
+ } |
|
43 |
+ to { |
|
44 |
+ opacity: 1.0; |
|
45 |
+ } |
|
46 |
+} |
|
47 |
+@-moz-keyframes justified-gallery-show-entry-animation { |
|
48 |
+ from { |
|
49 |
+ opacity: 0; |
|
50 |
+ } |
|
51 |
+ to { |
|
52 |
+ opacity: 1.0; |
|
53 |
+ } |
|
54 |
+} |
|
55 |
+@-o-keyframes justified-gallery-show-entry-animation { |
|
56 |
+ from { |
|
57 |
+ opacity: 0; |
|
58 |
+ } |
|
59 |
+ to { |
|
60 |
+ opacity: 1.0; |
|
61 |
+ } |
|
62 |
+} |
|
63 |
+@keyframes justified-gallery-show-entry-animation { |
|
64 |
+ from { |
|
65 |
+ opacity: 0; |
|
66 |
+ } |
|
67 |
+ to { |
|
68 |
+ opacity: 1.0; |
|
69 |
+ } |
|
70 |
+} |
|
71 |
+.justified-gallery { |
|
72 |
+ width: 100%; |
|
73 |
+ position: relative; |
|
74 |
+ overflow: hidden; |
|
75 |
+} |
|
76 |
+.justified-gallery > figure { |
|
77 |
+ position: absolute; |
|
78 |
+ display: inline-block; |
|
79 |
+ overflow: hidden; |
|
80 |
+ opacity: 0; |
|
81 |
+ filter: alpha(opacity=0); |
|
82 |
+ /* IE8 or Earlier */ |
|
83 |
+} |
|
84 |
+.justified-gallery > figure > img, |
|
85 |
+.justified-gallery > figure > a > img { |
|
86 |
+ position: absolute; |
|
87 |
+ top: 50%; |
|
88 |
+ left: 50%; |
|
89 |
+ margin: 0; |
|
90 |
+ padding: 0; |
|
91 |
+ border: none; |
|
92 |
+} |
|
93 |
+.justified-gallery > figure > .caption { |
|
94 |
+ display: none; |
|
95 |
+ position: absolute; |
|
96 |
+ bottom: 0; |
|
97 |
+ padding: 5px; |
|
98 |
+ background-color: #000000; |
|
99 |
+ left: 0; |
|
100 |
+ right: 0; |
|
101 |
+ margin: 0; |
|
102 |
+ color: white; |
|
103 |
+ font-size: 12px; |
|
104 |
+ font-weight: 300; |
|
105 |
+ font-family: sans-serif; |
|
106 |
+} |
|
107 |
+.justified-gallery > figure > .caption.caption-visible { |
|
108 |
+ display: initial; |
|
109 |
+ opacity: 0.7; |
|
110 |
+ filter: "alpha(opacity=70)"; |
|
111 |
+ /* IE8 or Earlier */ |
|
112 |
+ -webkit-animation: justified-gallery-show-caption-animation 500ms 0 ease; |
|
113 |
+ -moz-animation: justified-gallery-show-caption-animation 500ms 0 ease; |
|
114 |
+ -ms-animation: justified-gallery-show-caption-animation 500ms 0 ease; |
|
115 |
+} |
|
116 |
+.justified-gallery > .entry-visible { |
|
117 |
+ opacity: 1.0; |
|
118 |
+ filter: alpha(opacity=100); |
|
119 |
+ /* IE8 or Earlier */ |
|
120 |
+ -webkit-animation: justified-gallery-show-entry-animation 500ms 0 ease; |
|
121 |
+ -moz-animation: justified-gallery-show-entry-animation 500ms 0 ease; |
|
122 |
+ -ms-animation: justified-gallery-show-entry-animation 500ms 0 ease; |
|
123 |
+} |
|
124 |
+.justified-gallery > .jg-filtered { |
|
125 |
+ display: none; |
|
126 |
+} |
|
127 |
+.justified-gallery > .spinner { |
|
128 |
+ position: absolute; |
|
129 |
+ bottom: 0; |
|
130 |
+ margin-left: -24px; |
|
131 |
+ padding: 10px 0 10px 0; |
|
132 |
+ left: 50%; |
|
133 |
+ opacity: initial; |
|
134 |
+ filter: initial; |
|
135 |
+ overflow: initial; |
|
136 |
+} |
|
137 |
+.justified-gallery > .spinner > span { |
|
138 |
+ display: inline-block; |
|
139 |
+ opacity: 0; |
|
140 |
+ filter: alpha(opacity=0); |
|
141 |
+ /* IE8 or Earlier */ |
|
142 |
+ width: 8px; |
|
143 |
+ height: 8px; |
|
144 |
+ margin: 0 4px 0 4px; |
|
145 |
+ background-color: #000; |
|
146 |
+ border-top-left-radius: 6px; |
|
147 |
+ border-top-right-radius: 6px; |
|
148 |
+ border-bottom-right-radius: 6px; |
|
149 |
+ border-bottom-left-radius: 6px; |
|
150 |
+} |
|
0 | 151 |
\ No newline at end of file |