No idea why these are so hard to find! https://codepen.io/hougasian/pen/MpRPod
audio::-webkit-media-controls-panel
audio::-webkit-media-controls-mute-button
audio::-webkit-media-controls-play-button
| #!/bin/sh | |
| # Increase semver, build latest, publish to npm | |
| cyan="\033[1;36m" | |
| yellow="\033[1;33m" | |
| nc="\033[0m" | |
| v=$(perl -ne 'if (/"version": "(.*)"/) { print $1 . "\n" }' package.json) | |
| n=$(perl -ne 'if (/"name": "(.*)"/) { print $1 . "\n" }' package.json) | |
No idea why these are so hard to find! https://codepen.io/hougasian/pen/MpRPod
audio::-webkit-media-controls-panel
audio::-webkit-media-controls-mute-button
audio::-webkit-media-controls-play-button
| // Requires node/npm and installed packages | |
| // npm i gulp --save | |
| // npm i gulp-pleeease, gulp-sass, gulp-connect --save | |
| var gulp = require('gulp'), | |
| connect = require('gulp-connect'), | |
| pleeease = require('gulp-pleeease'), | |
| sass = require('gulp-sass'); | |
| var PleeeaseOptions = { |
| // Gulpfile.js running on stratumui, | |
| // a css framework available on npmjs.com | |
| var gulp = require('gulp'), | |
| sass = require('gulp-sass'), | |
| concat = require('gulp-concat'), | |
| uglify = require('gulp-uglify'), | |
| rename = require('gulp-rename'); | |
| var paths = { | |
| styles: { |
| // Font Awesome icons used | |
| $icons: ( | |
| check: "\f00c", | |
| check-o: "\f05d", | |
| check-circle: "\f058", | |
| circle: "\f111", | |
| circle-o: "\f10c", | |
| circle-o-thin: "\f1db", | |
| pencil: "\f040", | |
| plus: "\f067", |
| // CSS named colors sorted by HEX color | |
| // http://www.w3schools.com/cssref/css_colorsfull.asp | |
| $hex-colors: | |
| #000000, | |
| #000080, | |
| #00008B, | |
| #0000CD, | |
| #0000FF, | |
| #006400, | |
| #008000, |