Test the nginx config
$ sudo nginx -t
$ sudo nginx -t -c /etc/nginx/nginx.conf
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
<input type='range' min='0' max='32' step='1' value='20'/> | |
<input type='range' min='0' max='32' step='1' value='7'/> | |
<input type='range' min='0' max='32' step='1' value='5'/> | |
<input type='range' min='0' max='32' step='1' value='8'/> |
var pseudoClassesAndElementsArray = ['', ':hover', ':focus', ':active', ':first-child', ':first-of-type', ':checked', ':disabled', ':empty', ':enabled', ':invalid', ':last-child', ':last-of-type', ':link', ':only-of-type', ':only-child', ':optional', ':out-of-range', ':read-only', ':read-write', ':required', ':root', ':target', ':valid', ':visited', '::after', '::before', '::first-letter', '::first-line', '::selection', '', ]; | |
var colorListArray = []; | |
function isArray(data) { | |
var isArrayBoolean = Object.prototype.toString.call(data) == '[object Array]'; | |
return isArrayBoolean; | |
} | |
Native HTML controls are a challenge to style. You can style any element in the web platform that uses Shadow DOM with a pseudo element ::pseudo-element
or the /deep/
path selector.
video::webkit-media-controls-timeline {
background-color: lime;
}
video /deep/ input[type=range] {