25 lines
403 B
SCSS
Executable File
25 lines
403 B
SCSS
Executable File
// more in http://github.hubspot.com/pace/docs/welcome/
|
|
|
|
.pace {
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
user-select: none;
|
|
pointer-events: none;
|
|
|
|
-webkit-pointer-events: none;
|
|
}
|
|
.pace-inactive {
|
|
display: none;
|
|
}
|
|
.pace .pace-progress {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 100%;
|
|
z-index: 2000;
|
|
|
|
width: 100%;
|
|
height: 2px;
|
|
|
|
background: $primary-color;
|
|
}
|