LaravelTest
87 строк · 3.0 Кб
1/* This is a compiled file, to make changes persist, consider editing under the templates directory */
2.pace {3-webkit-pointer-events: none;4pointer-events: none;5
6-webkit-user-select: none;7-moz-user-select: none;8user-select: none;9
10overflow: hidden;11position: fixed;12top: 0;13left: 0;14z-index: 2000;15width: 100%;16height: 12px;17background: #fff;18}
19
20.pace-inactive {21display: none;22}
23
24.pace .pace-progress {25background-color: #FF2C00;26position: fixed;27top: 0;28right: 100%;29width: 100%;30height: 12px;31overflow: hidden;32
33-webkit-border-radius: 0 0 4px 0;34-moz-border-radius: 0 0 4px 0;35-o-border-radius: 0 0 4px 0;36border-radius: 0 0 4px 0;37
38-webkit-box-shadow: inset -1px 0 #BF1B00, inset 0 -1px #BF1B00, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, .3);39-moz-box-shadow: inset -1px 0 #BF1B00, inset 0 -1px #BF1B00, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, .3);40-o-box-shadow: inset -1px 0 #BF1B00, inset 0 -1px #BF1B00, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, .3);41box-shadow: inset -1px 0 #BF1B00, inset 0 -1px #BF1B00, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, .3);42}
43
44.pace .pace-activity {45position: fixed;46top: 0;47left: 0;48right: -28px;49bottom: 0;50
51-webkit-background-image: radial-gradient(rgba(255, 255, 255, .65) 0%, rgba(255, 255, 255, .15) 100%);52-moz-background-image: radial-gradient(rgba(255, 255, 255, .65) 0%, rgba(255, 255, 255, .15) 100%);53-o-background-image: radial-gradient(rgba(255, 255, 255, .65) 0%, rgba(255, 255, 255, .15) 100%);54background-image: radial-gradient(rgba(255, 255, 255, .65) 0%, rgba(255, 255, 255, .15) 100%);55
56-webkit-background-size: 28px 100%;57-moz-background-size: 28px 100%;58-o-background-size: 28px 100%;59background-size: 28px 100%;60
61-webkit-animation: pace-theme-mac-osx-motion 500ms linear infinite;62-moz-animation: pace-theme-mac-osx-motion 500ms linear infinite;63-ms-animation: pace-theme-mac-osx-motion 500ms linear infinite;64-o-animation: pace-theme-mac-osx-motion 500ms linear infinite;65animation: pace-theme-mac-osx-motion 500ms linear infinite;66}
67
68@-webkit-keyframes pace-theme-mac-osx-motion {690% { -webkit-transform: none; transform: none; }70100% { -webkit-transform: translate(-28px, 0); transform: translate(-28px, 0); }71}
72@-moz-keyframes pace-theme-mac-osx-motion {730% { -moz-transform: none; transform: none; }74100% { -moz-transform: translate(-28px, 0); transform: translate(-28px, 0); }75}
76@-o-keyframes pace-theme-mac-osx-motion {770% { -o-transform: none; transform: none; }78100% { -o-transform: translate(-28px, 0); transform: translate(-28px, 0); }79}
80@-ms-keyframes pace-theme-mac-osx-motion {810% { -ms-transform: none; transform: none; }82100% { -ms-transform: translate(-28px, 0); transform: translate(-28px, 0); }83}
84@keyframes pace-theme-mac-osx-motion {850% { transform: none; transform: none; }86100% { transform: translate(-28px, 0); transform: translate(-28px, 0); }87}
88