Last active
August 15, 2016 17:43
-
-
Save RX14/4da1bd184562e17de64b to your computer and use it in GitHub Desktop.
Chrome App Settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mouse Wheel: | |
Step Size: 86 | |
Smoothness-Forepart: 18.00 | |
Smoothness: 55.17 | |
Acceleration: 20 | |
Keyboard: | |
Step Size: 112 | |
Smoothness-Forepart: 25.51 | |
Smoothness: 55.17 | |
Acceleration: 1.05 | |
Misc: | |
Bouncy Edge: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//PACE FILL LEFT CSS: | |
.pace { | |
-webkit-pointer-events: none; | |
pointer-events: none; | |
-webkit-user-select: none; | |
-moz-user-select: none; | |
user-select: none; | |
} | |
.pace .pace-progress { | |
background-color: rgba(34, 153, 221, 0.19999999999999996); | |
position: fixed; | |
z-index: -1; | |
top: 0; | |
left: 0; | |
bottom: 0; | |
-webkit-transition: width 1s; | |
-moz-transition: width 1s; | |
-o-transition: width 1s; | |
transition: width 1s; | |
} | |
.pace.pace-inactive { | |
visibility: hidden; | |
opacity: 0; | |
transition:visibility 0s linear 0.5s,opacity 0.5s linear; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment