pace-theme-barber-shop.css 3.0 KB

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