1+ .pace {
2+ -webkit-box-sizing : border-box;
3+ -moz-box-sizing : border-box;
4+ -ms-box-sizing : border-box;
5+ -o-box-sizing : border-box;
6+ box-sizing : border-box;
7+
8+ -webkit-border-radius : 10px ;
9+ -moz-border-radius : 10px ;
10+ border-radius : 10px ;
11+
12+ -moz-background-clip : padding;
13+ -webkit-background-clip : padding-box;
14+ background-clip : padding-box;
15+
16+ -webkit-pointer-events : none;
17+ pointer-events : none;
18+ -webkit-user-select : none;
19+ -moz-user-select : none;
20+ user-select : none;
21+
22+ z-index : 2000 ;
23+ position : fixed;
24+ margin : auto;
25+ top : 12px ;
26+ left : 0 ;
27+ right : 0 ;
28+ bottom : 0 ;
29+ width : 200px ;
30+ height : 25px ;
31+ border : 2px solid `args.color || "#29d" `;
32+ background- color : # fff ;
33+ }
34+
35+ .pace .pace-progress {
36+ -webkit-box-sizing : border-box;
37+ -moz-box-sizing : border-box;
38+ -ms-box-sizing : border-box;
39+ -o-box-sizing : border-box;
40+ box-sizing : border-box;
41+
42+ -webkit-border-radius : 5px ;
43+ -moz-border-radius : 5px ;
44+ border-radius : 5px ;
45+
46+ -webkit-background-clip : padding-box;
47+ -moz-background-clip : padding;
48+ background-clip : padding-box;
49+
50+ -webkit-transition : width 1s ease-in-out 1s linear;
51+ -moz-transition : width 1s ease-in-out 1s linear;
52+ -ms-transition : width 1s ease-in-out 1s linear;
53+ -o-transition : width 1s ease-in-out 1s linear;
54+ transition : width 1s ease-in-out 1s linear;
55+
56+ -webkit-transform : translate3d (0 , 0 , 0 );
57+ transform : translate3d (0 , 0 , 0 );
58+
59+ max-width : 190px ;
60+ position : fixed;
61+ z-index : 2000 ;
62+ display : block;
63+ position : absolute;
64+ left : 3px ;
65+ top : 3px ;
66+ height : 15px ;
67+ font-size : 12px ;
68+ background : `args.color || "#29d" `;
69+ color : `args.color || "#29d" `;
70+ line-height: 60px;
71+ font- weight: bold;
72+ font- family: Helvetica, Arial , "Lucida Grande" , sans-serif ;
73+ }
74+
75+ .pace .pace-progress : after {
76+ content : attr (data-progress-text);
77+ display : inline-block;
78+ }
79+
80+ .pace .pace-inactive {
81+ display : none;
82+ }
0 commit comments