GPQAPP
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
10z-index: 2000;11position: fixed;12height: 90px;13width: 90px;14margin: auto;15top: 0;16left: 0;17right: 0;18bottom: 0;19}
20
21.pace.pace-inactive .pace-activity {22display: none;23}
24
25.pace .pace-activity {26position: fixed;27z-index: 2000;28display: block;29position: absolute;30left: -30px;31top: -30px;32height: 90px;33width: 90px;34display: block;35border-width: 30px;36border-style: double;37border-color: #ee3148 transparent transparent;38border-radius: 50%;39
40-webkit-box-sizing: content-box;41-moz-box-sizing: content-box;42box-sizing: content-box;43
44-webkit-animation: spin 1s linear infinite;45-moz-animation: spin 1s linear infinite;46-o-animation: spin 1s linear infinite;47animation: spin 1s linear infinite;48}
49
50.pace .pace-activity:before {51content: ' ';52position: absolute;53top: 10px;54left: 10px;55height: 50px;56width: 50px;57display: block;58border-width: 10px;59border-style: solid;60border-color: #ee3148 transparent transparent;61border-radius: 50%;62
63-webkit-box-sizing: content-box;64-moz-box-sizing: content-box;65box-sizing: content-box;66}
67
68@-webkit-keyframes spin {69100% { -webkit-transform: rotate(359deg); }70}
71
72@-moz-keyframes spin {73100% { -moz-transform: rotate(359deg); }74}
75
76@-o-keyframes spin {77100% { -moz-transform: rotate(359deg); }78}
79
80@keyframes spin {81100% { transform: rotate(359deg); }82}
83