|
| 1 | +/* This is a compiled file, you should be editing the file in the templates directory */ |
| 2 | +.pace { |
| 3 | + -webkit-pointer-events: none; |
| 4 | + pointer-events: none; |
| 5 | + -webkit-user-select: none; |
| 6 | + -moz-user-select: none; |
| 7 | + user-select: none; |
| 8 | +} |
| 9 | + |
| 10 | +.pace-inactive { |
| 11 | + display: none; |
| 12 | +} |
| 13 | + |
| 14 | +.pace .pace-progress { |
| 15 | + background-color: #000000; |
| 16 | + position: fixed; |
| 17 | + z-index: 2000; |
| 18 | + top: 0; |
| 19 | + left: 0; |
| 20 | + height: 12px; |
| 21 | + overflow: hidden; |
| 22 | + |
| 23 | + -webkit-transition: width 1s; |
| 24 | + -moz-transition: width 1s; |
| 25 | + -o-transition: width 1s; |
| 26 | + transition: width 1s; |
| 27 | +} |
| 28 | + |
| 29 | +.pace .pace-progress-inner { |
| 30 | + position: absolute; |
| 31 | + top: 0; |
| 32 | + left: 0; |
| 33 | + right: -32px; |
| 34 | + bottom: 0; |
| 35 | + |
| 36 | + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.2)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.2)), color-stop(0.75, rgba(255, 255, 255, 0.2)), color-stop(0.75, transparent), to(transparent)); |
| 37 | + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent); |
| 38 | + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent); |
| 39 | + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent); |
| 40 | + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent); |
| 41 | + -webkit-background-size: 32px 32px; |
| 42 | + -moz-background-size: 32px 32px; |
| 43 | + -o-background-size: 32px 32px; |
| 44 | + background-size: 32px 32px; |
| 45 | + |
| 46 | + -webkit-animation: pace-stripe-animation 500ms linear infinite; |
| 47 | + -moz-animation: pace-stripe-animation 500ms linear infinite; |
| 48 | + -ms-animation: pace-stripe-animation 500ms linear infinite; |
| 49 | + -o-animation: pace-stripe-animation 500ms linear infinite; |
| 50 | + animation: pace-stripe-animation 500ms linear infinite; |
| 51 | +} |
| 52 | + |
| 53 | +@-webkit-keyframes pace-stripe-animation { |
| 54 | + 0% { -webkit-transform: none; transform: none; } |
| 55 | + 100% { -webkit-transform: translate(-32px, 0); transform: translate(-32px, 0); } |
| 56 | +} |
| 57 | +@-moz-keyframes pace-stripe-animation { |
| 58 | + 0% { -moz-transform: none; transform: none; } |
| 59 | + 100% { -moz-transform: translate(-32px, 0); transform: translate(-32px, 0); } |
| 60 | +} |
| 61 | +@-o-keyframes pace-stripe-animation { |
| 62 | + 0% { -o-transform: none; transform: none; } |
| 63 | + 100% { -o-transform: translate(-32px, 0); transform: translate(-32px, 0); } |
| 64 | +} |
| 65 | +@-ms-keyframes pace-stripe-animation { |
| 66 | + 0% { -ms-transform: none; transform: none; } |
| 67 | + 100% { -ms-transform: translate(-32px, 0); transform: translate(-32px, 0); } |
| 68 | +} |
| 69 | +@keyframes pace-stripe-animation { |
| 70 | + 0% { transform: none; transform: none; } |
| 71 | + 100% { transform: translate(-32px, 0); transform: translate(-32px, 0); } |
| 72 | +} |
0 commit comments