Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 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: #29d; |
||
| 16 | position: fixed; |
||
| 17 | z-index: 10000; |
||
| 18 | top: 0 !important; |
||
| 19 | left: 0; |
||
| 20 | height: 46px !important; |
||
| 21 | overflow: hidden; |
||
| 22 | opacity: 0.8; |
||
| 23 | filter: alpha(opacity=80); |
||
| 24 | -webkit-transition: width 1s; |
||
| 25 | -moz-transition: width 1s; |
||
| 26 | -o-transition: width 1s; |
||
| 27 | transition: width 1s; |
||
| 28 | } |
||
| 29 | |||
| 30 | .pace .pace-progress-inner { |
||
| 31 | position: absolute; |
||
| 32 | top: 0; |
||
| 33 | left: 0; |
||
| 34 | right: -32px; |
||
| 35 | bottom: 0; |
||
| 36 | |||
| 37 | 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)); |
||
| 38 | 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); |
||
| 39 | 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); |
||
| 40 | 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); |
||
| 41 | 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); |
||
| 42 | -webkit-background-size: 32px 32px; |
||
| 43 | -moz-background-size: 32px 32px; |
||
| 44 | -o-background-size: 32px 32px; |
||
| 45 | background-size: 32px 32px; |
||
| 46 | |||
| 47 | -webkit-animation: pace-stripe-animation 500ms linear infinite; |
||
| 48 | -moz-animation: pace-stripe-animation 500ms linear infinite; |
||
| 49 | -ms-animation: pace-stripe-animation 500ms linear infinite; |
||
| 50 | -o-animation: pace-stripe-animation 500ms linear infinite; |
||
| 51 | animation: pace-stripe-animation 500ms linear infinite; |
||
| 52 | } |
||
| 53 | |||
| 54 | @-webkit-keyframes pace-stripe-animation { |
||
| 55 | 0% { -webkit-transform: none; transform: none; } |
||
| 56 | 100% { -webkit-transform: translate(-32px, 0); transform: translate(-32px, 0); } |
||
| 57 | } |
||
| 58 | @-moz-keyframes pace-stripe-animation { |
||
| 59 | 0% { -moz-transform: none; transform: none; } |
||
| 60 | 100% { -moz-transform: translate(-32px, 0); transform: translate(-32px, 0); } |
||
| 61 | } |
||
| 62 | @-o-keyframes pace-stripe-animation { |
||
| 63 | 0% { -o-transform: none; transform: none; } |
||
| 64 | 100% { -o-transform: translate(-32px, 0); transform: translate(-32px, 0); } |
||
| 65 | } |
||
| 66 | @-ms-keyframes pace-stripe-animation { |
||
| 67 | 0% { -ms-transform: none; transform: none; } |
||
| 68 | 100% { -ms-transform: translate(-32px, 0); transform: translate(-32px, 0); } |
||
| 69 | } |
||
| 70 | @keyframes pace-stripe-animation { |
||
| 71 | 0% { transform: none; transform: none; } |
||
| 72 | 100% { transform: translate(-32px, 0); transform: translate(-32px, 0); } |
||
| 73 | } |