This file contains hidden or 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
::-webkit-scrollbar { | |
width: 8px; | |
height: 8px; | |
} | |
::-webkit-scrollbar-thumb { | |
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5); | |
border-radius: 4px; | |
background: rgba(0, 0, 0, 0.25); | |
} | |
::-webkit-scrollbar-track { |
This file contains hidden or 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
var setDefaultDate = function(){ | |
var now = new Date(), | |
y = now.getFullYear(), | |
m = now.getMonth() + 1 , | |
d = now.getDate(); | |
m = m < 10 ? ('0' + m) : m; | |
d = d < 10 ? ('0' + d) : d; | |
var date = '' + y + '-' + m + '-' + d; |