├── .github └── FUNDING.yml ├── LICENSE.txt ├── README.md ├── about.txt ├── index.html ├── script.js └── themes ├── default ├── about.txt ├── fonts │ ├── licenses │ │ └── slkscr.txt │ └── slkscr.ttf ├── images │ ├── green-light-off.gif │ ├── green-light-on.gif │ ├── info.png │ ├── mute.png │ ├── next.png │ ├── pause.png │ ├── play.png │ ├── prev.png │ ├── slider.gif │ ├── sound.png │ └── stop.png ├── logo.png └── webdeck-player.css ├── minimal ├── about.txt ├── fonts │ ├── licenses │ │ └── slkscr.txt │ └── slkscr.ttf ├── images │ ├── green-light-off.gif │ ├── green-light-on.gif │ ├── info.png │ ├── mute.png │ ├── next.png │ ├── pause.png │ ├── play.png │ ├── prev.png │ ├── slider.gif │ ├── sound.png │ └── stop.png ├── logo.png └── webdeck-player.css ├── red-grunge ├── about.txt ├── fonts │ ├── licenses │ │ └── slkscr.txt │ └── slkscr.ttf ├── images │ ├── background.jpg │ ├── green-light-off.gif │ ├── green-light-on.gif │ ├── info.png │ ├── mute.png │ ├── next.png │ ├── pause.png │ ├── play.png │ ├── prev.png │ ├── slider.gif │ ├── sound.png │ └── stop.png ├── logo.png └── webdeck-player.css ├── silver ├── about.txt ├── fonts │ ├── EurostileExtendedBlack.ttf │ ├── LED-Dot-Matrix.ttf │ ├── licenses │ │ └── slkscr.txt │ └── slkscr.ttf ├── images │ ├── green-light-off.gif │ ├── green-light-on.gif │ ├── info.png │ ├── mute.png │ ├── next.png │ ├── pause.png │ ├── play.png │ ├── prev.png │ ├── sound.png │ └── stop.png ├── logo.png └── webdeck-player.css └── violet ├── about.txt ├── fonts ├── DS-DIGII.TTF ├── EurostileExtendedBlack.ttf └── licenses │ └── DIGITAL.TXT ├── images ├── green-light-off.gif ├── green-light-on.gif ├── info.png ├── mute.png ├── next.png ├── pause.png ├── play.png ├── prev.png ├── sound.png └── stop.png ├── logo.png └── webdeck-player.css /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/README.md -------------------------------------------------------------------------------- /about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/about.txt -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/index.html -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/script.js -------------------------------------------------------------------------------- /themes/default/about.txt: -------------------------------------------------------------------------------- 1 | DEFAULT THEME - FOR WEBDECK PLAYER 2 | Created by Chris -------------------------------------------------------------------------------- /themes/default/fonts/licenses/slkscr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/default/fonts/licenses/slkscr.txt -------------------------------------------------------------------------------- /themes/default/fonts/slkscr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/default/fonts/slkscr.ttf -------------------------------------------------------------------------------- /themes/default/images/green-light-off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/default/images/green-light-off.gif -------------------------------------------------------------------------------- /themes/default/images/green-light-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/default/images/green-light-on.gif -------------------------------------------------------------------------------- /themes/default/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/default/images/info.png -------------------------------------------------------------------------------- /themes/default/images/mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/default/images/mute.png -------------------------------------------------------------------------------- /themes/default/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/default/images/next.png -------------------------------------------------------------------------------- /themes/default/images/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/default/images/pause.png -------------------------------------------------------------------------------- /themes/default/images/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/default/images/play.png -------------------------------------------------------------------------------- /themes/default/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/default/images/prev.png -------------------------------------------------------------------------------- /themes/default/images/slider.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/default/images/slider.gif -------------------------------------------------------------------------------- /themes/default/images/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/default/images/sound.png -------------------------------------------------------------------------------- /themes/default/images/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/default/images/stop.png -------------------------------------------------------------------------------- /themes/default/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/default/logo.png -------------------------------------------------------------------------------- /themes/default/webdeck-player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/default/webdeck-player.css -------------------------------------------------------------------------------- /themes/minimal/about.txt: -------------------------------------------------------------------------------- 1 | MINIMAL THEME - FOR WEBDECK PLAYER 2 | Created by Chris -------------------------------------------------------------------------------- /themes/minimal/fonts/licenses/slkscr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/minimal/fonts/licenses/slkscr.txt -------------------------------------------------------------------------------- /themes/minimal/fonts/slkscr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/minimal/fonts/slkscr.ttf -------------------------------------------------------------------------------- /themes/minimal/images/green-light-off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/minimal/images/green-light-off.gif -------------------------------------------------------------------------------- /themes/minimal/images/green-light-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/minimal/images/green-light-on.gif -------------------------------------------------------------------------------- /themes/minimal/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/minimal/images/info.png -------------------------------------------------------------------------------- /themes/minimal/images/mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/minimal/images/mute.png -------------------------------------------------------------------------------- /themes/minimal/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/minimal/images/next.png -------------------------------------------------------------------------------- /themes/minimal/images/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/minimal/images/pause.png -------------------------------------------------------------------------------- /themes/minimal/images/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/minimal/images/play.png -------------------------------------------------------------------------------- /themes/minimal/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/minimal/images/prev.png -------------------------------------------------------------------------------- /themes/minimal/images/slider.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/minimal/images/slider.gif -------------------------------------------------------------------------------- /themes/minimal/images/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/minimal/images/sound.png -------------------------------------------------------------------------------- /themes/minimal/images/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/minimal/images/stop.png -------------------------------------------------------------------------------- /themes/minimal/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/minimal/logo.png -------------------------------------------------------------------------------- /themes/minimal/webdeck-player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/minimal/webdeck-player.css -------------------------------------------------------------------------------- /themes/red-grunge/about.txt: -------------------------------------------------------------------------------- 1 | RED GRUNGE THEME - FOR WEBDECK PLAYER 2 | Created by Chris -------------------------------------------------------------------------------- /themes/red-grunge/fonts/licenses/slkscr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/red-grunge/fonts/licenses/slkscr.txt -------------------------------------------------------------------------------- /themes/red-grunge/fonts/slkscr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/red-grunge/fonts/slkscr.ttf -------------------------------------------------------------------------------- /themes/red-grunge/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/red-grunge/images/background.jpg -------------------------------------------------------------------------------- /themes/red-grunge/images/green-light-off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/red-grunge/images/green-light-off.gif -------------------------------------------------------------------------------- /themes/red-grunge/images/green-light-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/red-grunge/images/green-light-on.gif -------------------------------------------------------------------------------- /themes/red-grunge/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/red-grunge/images/info.png -------------------------------------------------------------------------------- /themes/red-grunge/images/mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/red-grunge/images/mute.png -------------------------------------------------------------------------------- /themes/red-grunge/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/red-grunge/images/next.png -------------------------------------------------------------------------------- /themes/red-grunge/images/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/red-grunge/images/pause.png -------------------------------------------------------------------------------- /themes/red-grunge/images/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/red-grunge/images/play.png -------------------------------------------------------------------------------- /themes/red-grunge/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/red-grunge/images/prev.png -------------------------------------------------------------------------------- /themes/red-grunge/images/slider.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/red-grunge/images/slider.gif -------------------------------------------------------------------------------- /themes/red-grunge/images/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/red-grunge/images/sound.png -------------------------------------------------------------------------------- /themes/red-grunge/images/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/red-grunge/images/stop.png -------------------------------------------------------------------------------- /themes/red-grunge/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/red-grunge/logo.png -------------------------------------------------------------------------------- /themes/red-grunge/webdeck-player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/red-grunge/webdeck-player.css -------------------------------------------------------------------------------- /themes/silver/about.txt: -------------------------------------------------------------------------------- 1 | SILVER THEME - FOR WEBDECK PLAYER 2 | Created by Chris -------------------------------------------------------------------------------- /themes/silver/fonts/EurostileExtendedBlack.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/silver/fonts/EurostileExtendedBlack.ttf -------------------------------------------------------------------------------- /themes/silver/fonts/LED-Dot-Matrix.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/silver/fonts/LED-Dot-Matrix.ttf -------------------------------------------------------------------------------- /themes/silver/fonts/licenses/slkscr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/silver/fonts/licenses/slkscr.txt -------------------------------------------------------------------------------- /themes/silver/fonts/slkscr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/silver/fonts/slkscr.ttf -------------------------------------------------------------------------------- /themes/silver/images/green-light-off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/silver/images/green-light-off.gif -------------------------------------------------------------------------------- /themes/silver/images/green-light-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/silver/images/green-light-on.gif -------------------------------------------------------------------------------- /themes/silver/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/silver/images/info.png -------------------------------------------------------------------------------- /themes/silver/images/mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/silver/images/mute.png -------------------------------------------------------------------------------- /themes/silver/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/silver/images/next.png -------------------------------------------------------------------------------- /themes/silver/images/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/silver/images/pause.png -------------------------------------------------------------------------------- /themes/silver/images/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/silver/images/play.png -------------------------------------------------------------------------------- /themes/silver/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/silver/images/prev.png -------------------------------------------------------------------------------- /themes/silver/images/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/silver/images/sound.png -------------------------------------------------------------------------------- /themes/silver/images/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/silver/images/stop.png -------------------------------------------------------------------------------- /themes/silver/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/silver/logo.png -------------------------------------------------------------------------------- /themes/silver/webdeck-player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/silver/webdeck-player.css -------------------------------------------------------------------------------- /themes/violet/about.txt: -------------------------------------------------------------------------------- 1 | VIOLET THEME - FOR WEBDECK PLAYER 2 | Created by Chris -------------------------------------------------------------------------------- /themes/violet/fonts/DS-DIGII.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/violet/fonts/DS-DIGII.TTF -------------------------------------------------------------------------------- /themes/violet/fonts/EurostileExtendedBlack.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/violet/fonts/EurostileExtendedBlack.ttf -------------------------------------------------------------------------------- /themes/violet/fonts/licenses/DIGITAL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/violet/fonts/licenses/DIGITAL.TXT -------------------------------------------------------------------------------- /themes/violet/images/green-light-off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/violet/images/green-light-off.gif -------------------------------------------------------------------------------- /themes/violet/images/green-light-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/violet/images/green-light-on.gif -------------------------------------------------------------------------------- /themes/violet/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/violet/images/info.png -------------------------------------------------------------------------------- /themes/violet/images/mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/violet/images/mute.png -------------------------------------------------------------------------------- /themes/violet/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/violet/images/next.png -------------------------------------------------------------------------------- /themes/violet/images/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/violet/images/pause.png -------------------------------------------------------------------------------- /themes/violet/images/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/violet/images/play.png -------------------------------------------------------------------------------- /themes/violet/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/violet/images/prev.png -------------------------------------------------------------------------------- /themes/violet/images/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/violet/images/sound.png -------------------------------------------------------------------------------- /themes/violet/images/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/violet/images/stop.png -------------------------------------------------------------------------------- /themes/violet/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/violet/logo.png -------------------------------------------------------------------------------- /themes/violet/webdeck-player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristiancfm/webdeck-player/HEAD/themes/violet/webdeck-player.css --------------------------------------------------------------------------------