source: main/trunk/model-sites-dev/mars/collect/amc-essentia/iframe/support/simplelightbox.css@ 33547

Last change on this file since 33547 was 33547, checked in by davidb, 5 years ago

Initial cut at wavesurfer JS audio player version of AMC music content collection

File size: 3.8 KB
Line 
1/* line 1, ../sass/simplelightbox.scss */
2.sl-overlay {
3 position: fixed;
4 left: 0;
5 right: 0;
6 top: 0;
7 bottom: 0;
8 background: #fff;
9 opacity: 0.7;
10 display: none;
11 z-index: 1006;
12}
13
14/* line 12, ../sass/simplelightbox.scss */
15.sl-wrapper {
16 z-index: 1000;
17}
18/* line 14, ../sass/simplelightbox.scss */
19.sl-wrapper button {
20 border: 0 none;
21 background: transparent;
22 font-size: 58px;
23 padding: 0;
24 cursor: pointer;
25}
26/* line 20, ../sass/simplelightbox.scss */
27.sl-wrapper button:hover {
28 opacity: 0.7;
29}
30/* line 25, ../sass/simplelightbox.scss */
31.sl-wrapper .sl-close {
32 display: none;
33 position: fixed;
34 right: 30px;
35 top: 30px;
36 z-index: 1015;
37}
38/* line 33, ../sass/simplelightbox.scss */
39.sl-wrapper .sl-counter {
40 display: none;
41 position: fixed;
42 top: 30px;
43 left: 30px;
44 z-index: 1015;
45}
46/* line 41, ../sass/simplelightbox.scss */
47.sl-wrapper .sl-navigation {
48 width: 100%;
49 display: none;
50}
51/* line 44, ../sass/simplelightbox.scss */
52.sl-wrapper .sl-navigation button {
53 position: fixed;
54 top: 50%;
55 margin-top: -10px;
56 height: 30px;
57 width: 30px;
58 line-height: 30px;
59 text-align: center;
60 display: block;
61 z-index: 1015;
62 font-family: arial sans-serif;
63}
64/* line 55, ../sass/simplelightbox.scss */
65.sl-wrapper .sl-navigation button.sl-next {
66 right: 40px;
67}
68/* line 59, ../sass/simplelightbox.scss */
69.sl-wrapper .sl-navigation button.sl-prev {
70 left: 40px;
71}
72/* line 65, ../sass/simplelightbox.scss */
73.sl-wrapper .sl-image {
74 position: fixed;
75 -ms-touch-action: none;
76 touch-action: none;
77 z-index: 10000;
78}
79/* line 70, ../sass/simplelightbox.scss */
80.sl-wrapper .sl-image img {
81 margin: 0;
82 padding: 0;
83 display: block;
84}
85/* line 75, ../sass/simplelightbox.scss */
86.sl-wrapper .sl-image iframe {
87 border: 0 none;
88 background: #000;
89}
90/* line 79, ../sass/simplelightbox.scss */
91.sl-wrapper .sl-image .sl-caption {
92 display: none;
93 padding: 10px;
94 color: #fff;
95 background: #000;
96 opacity: 0.8;
97 position: absolute;
98 bottom: 0;
99 left: 0;
100 right: 0;
101}
102/* line 90, ../sass/simplelightbox.scss */
103.sl-wrapper .sl-image .sl-caption.pos-top {
104 bottom: auto;
105 top: 0;
106}
107/* line 95, ../sass/simplelightbox.scss */
108.sl-wrapper .sl-image .sl-caption.pos-outside {
109 bottom: auto;
110}
111/* line 100, ../sass/simplelightbox.scss */
112.sl-wrapper .sl-image .sl-download {
113 display: none;
114 position: absolute;
115 bottom: 5px;
116 right: 5px;
117 color: #fff;
118 z-index: 1005;
119}
120
121/* line 111, ../sass/simplelightbox.scss */
122.sl-spinner {
123 display: none;
124 border: 5px solid #333;
125 border-radius: 40px;
126 height: 40px;
127 left: 50%;
128 margin: -20px 0 0 -20px;
129 opacity: 0;
130 position: fixed;
131 top: 50%;
132 width: 40px;
133 z-index: 1007;
134 -webkit-animation: pulsate 1s ease-out infinite;
135 -moz-animation: pulsate 1s ease-out infinite;
136 -ms-animation: pulsate 1s ease-out infinite;
137 -o-animation: pulsate 1s ease-out infinite;
138 animation: pulsate 1s ease-out infinite;
139}
140
141/* line 130, ../sass/simplelightbox.scss */
142.sl-scrollbar-measure {
143 position: absolute;
144 top: -9999px;
145 width: 50px;
146 height: 50px;
147 overflow: scroll;
148}
149
150@-webkit-keyframes pulsate {
151 0% {
152 transform: scale(0.1);
153 opacity: 0.0;
154 }
155 50% {
156 opacity: 1;
157 }
158 100% {
159 transform: scale(1.2);
160 opacity: 0;
161 }
162}
163@keyframes pulsate {
164 0% {
165 transform: scale(0.1);
166 opacity: 0.0;
167 }
168 50% {
169 opacity: 1;
170 }
171 100% {
172 transform: scale(1.2);
173 opacity: 0;
174 }
175}
176@-moz-keyframes pulsate {
177 0% {
178 transform: scale(0.1);
179 opacity: 0.0;
180 }
181 50% {
182 opacity: 1;
183 }
184 100% {
185 transform: scale(1.2);
186 opacity: 0;
187 }
188}
189@-o-keyframes pulsate {
190 0% {
191 transform: scale(0.1);
192 opacity: 0.0;
193 }
194 50% {
195 opacity: 1;
196 }
197 100% {
198 transform: scale(1.2);
199 opacity: 0;
200 }
201}
202@-ms-keyframes pulsate {
203 0% {
204 transform: scale(0.1);
205 opacity: 0.0;
206 }
207 50% {
208 opacity: 1;
209 }
210 100% {
211 transform: scale(1.2);
212 opacity: 0;
213 }
214}
Note: See TracBrowser for help on using the repository browser.