UNPKG

745 BCSSView Raw
1.lg-progress-bar {
2 background-color: #333;
3 height: 5px;
4 left: 0;
5 position: absolute;
6 top: 0;
7 width: 100%;
8 z-index: 1083;
9 opacity: 0;
10 will-change: opacity;
11 -webkit-transition: opacity 0.08s ease 0s;
12 -moz-transition: opacity 0.08s ease 0s;
13 -o-transition: opacity 0.08s ease 0s;
14 transition: opacity 0.08s ease 0s;
15}
16
17.lg-progress-bar .lg-progress {
18 background-color: #a90707;
19 height: 5px;
20 width: 0;
21}
22
23.lg-progress-bar.lg-start .lg-progress {
24 width: 100%;
25}
26
27.lg-show-autoplay .lg-progress-bar {
28 opacity: 1;
29}
30
31.lg-autoplay-button:after {
32 content: '\e01d';
33}
34
35.lg-show-autoplay .lg-autoplay-button:after {
36 content: '\e01a';
37}
38
39.lg-single-item .lg-autoplay-button {
40 opacity: 0.75;
41 pointer-events: none;
42}