1+ .pace {
2+ -webkit-pointer-events : none;
3+ pointer-events : none;
4+ -webkit-user-select : none;
5+ -moz-user-select : none;
6+ user-select : none;
7+ }
8+
9+ .pace .pace-progress {
10+ background-color : # 78C0F0 ;
11+ position : fixed;
12+ z-index : 99999999999999 ;
13+ top : 0 ;
14+ left : 0 ;
15+ height : 12px ;
16+ overflow : hidden;
17+ -webkit-border-radius : 0 0 4px 0 ;
18+ -moz-border-radius : 0 0 4px 0 ;
19+ -o-border-radius : 0 0 4px 0 ;
20+ border-radius : 0 0 4px 0 ;
21+ -webkit-box-shadow : inset -1px 0 rgba (0 , 0 , 0 , 0.3 ), inset 0 -1px rgba (0 , 0 , 0 , 0.3 ), inset 0 2px rgba (255 , 255 , 255 , 0.5 ), inset 0 6px rgba (255 , 255 , 255 , 0.3 );
22+ -moz-box-shadow : inset -1px 0 rgba (0 , 0 , 0 , 0.3 ), inset 0 -1px rgba (0 , 0 , 0 , 0.3 ), inset 0 2px rgba (255 , 255 , 255 , 0.5 ), inset 0 6px rgba (255 , 255 , 255 , 0.3 );
23+ -o-box-shadow : inset -1px 0 rgba (0 , 0 , 0 , 0.3 ), inset 0 -1px rgba (0 , 0 , 0 , 0.3 ), inset 0 2px rgba (255 , 255 , 255 , 0.5 ), inset 0 6px rgba (255 , 255 , 255 , 0.3 );
24+ box-shadow : inset -1px 0 rgba (0 , 0 , 0 , 0.3 ), inset 0 -1px rgba (0 , 0 , 0 , 0.3 ), inset 0 2px rgba (255 , 255 , 255 , 0.5 ), inset 0 6px rgba (255 , 255 , 255 , 0.3 );
25+ }
26+
27+ .pace .pace-progress-inner {
28+ position : absolute;
29+ top : 0 ;
30+ left : 0 ;
31+ right : -28px ;
32+ bottom : 0 ;
33+
34+ background-image : -webkit-radial-gradient (rgba (21 , 146 , 226 , 0.6 ) 0% , rgba (120 , 192 , 240 , 0 ) 100% );
35+ background-image : -moz-radial-gradient (rgba (21 , 146 , 226 , 0.6 ) 0% , rgba (120 , 192 , 240 , 0 ) 100% );
36+ background-image : -o-radial-gradient (rgba (21 , 146 , 226 , 0.6 ) 0% , rgba (120 , 192 , 240 , 0 ) 100% );
37+ background-image : radial-gradient (rgba (21 , 146 , 226 , 0.6 ) 0% , rgba (120 , 192 , 240 , 0 ) 100% );
38+ -webkit-background-size : 28px 100% ;
39+ -moz-background-size : 28px 100% ;
40+ -o-background-size : 28px 100% ;
41+ background-size : 28px 100% ;
42+
43+ -webkit-animation : pace-stripe-animation 500ms linear infinite;
44+ -moz-animation : pace-stripe-animation 500ms linear infinite;
45+ -ms-animation : pace-stripe-animation 500ms linear infinite;
46+ -o-animation : pace-stripe-animation 500ms linear infinite;
47+ animation : pace-stripe-animation 500ms linear infinite;
48+ }
49+
50+ @-webkit-keyframes pace-stripe-animation {
51+ 0% { -webkit-transform : none; transform : none; }
52+ 100% { -webkit-transform : translate (-28px , 0 ); transform : translate (-28px , 0 ); }
53+ }
54+ @-moz-keyframes pace-stripe-animation {
55+ 0% { -moz-transform : none; transform : none; }
56+ 100% { -moz-transform : translate (-28px , 0 ); transform : translate (-28px , 0 ); }
57+ }
58+ @-o-keyframes pace-stripe-animation {
59+ 0% { -o-transform : none; transform : none; }
60+ 100% { -o-transform : translate (-28px , 0 ); transform : translate (-28px , 0 ); }
61+ }
62+ @-ms-keyframes pace-stripe-animation {
63+ 0% { -ms-transform : none; transform : none; }
64+ 100% { -ms-transform : translate (-28px , 0 ); transform : translate (-28px , 0 ); }
65+ }
66+ @keyframes pace-stripe-animation {
67+ 0% { transform : none; transform : none; }
68+ 100% { transform : translate (-28px , 0 ); transform : translate (-28px , 0 ); }
69+ }
0 commit comments