From a736da57f084017ac17e06cd9db19b1fd166e1a6 Mon Sep 17 00:00:00 2001 From: yo mama Date: Sat, 4 Apr 2015 01:11:47 -0700 Subject: first --- public/vendor/video-js/video-js.css | 726 ++++ public/vendor/video-js/video-js.min.css | 4 + public/vendor/video-js/video-js.png | Bin 0 -> 4565 bytes public/vendor/video-js/video-js.swf | Bin 0 -> 14059 bytes public/vendor/video-js/video.dev.js | 6067 +++++++++++++++++++++++++++++++ public/vendor/video-js/video.js | 121 + 6 files changed, 6918 insertions(+) create mode 100755 public/vendor/video-js/video-js.css create mode 100755 public/vendor/video-js/video-js.min.css create mode 100755 public/vendor/video-js/video-js.png create mode 100755 public/vendor/video-js/video-js.swf create mode 100755 public/vendor/video-js/video.dev.js create mode 100755 public/vendor/video-js/video.js (limited to 'public/vendor/video-js') diff --git a/public/vendor/video-js/video-js.css b/public/vendor/video-js/video-js.css new file mode 100755 index 0000000..fc02fdf --- /dev/null +++ b/public/vendor/video-js/video-js.css @@ -0,0 +1,726 @@ +/*! +Video.js Default Styles (http://videojs.com) +Version 4.1.0 +*/ + +/* +REQUIRED STYLES (be careful overriding) +================================================================================ */ +/* When loading the player, the video tag is replaced with a DIV, + that will hold the video tag or object tag for other playback methods. + The div contains the video playback element (Flash or HTML5) and controls, and sets the width and height of the video. + + ** If you want to add some kind of border/padding (e.g. a frame), or special positioning, use another containing element. + Otherwise you risk messing up control positioning and full window mode. ** +*/ +.video-js { + background-color: #000; + position: relative; + padding: 0; + /* Start with 10px for base font size so other dimensions can be em based and easily calculable. */ + font-size: 10px; + /* Allow poster to be vertially aligned. */ + vertical-align: middle; + /* display: table-cell; */ /*This works in Safari but not Firefox.*/ + + /* Turn off user selection (text highlighting) by default. + The majority of player components will not be text blocks. + Text areas will need to turn user selection back on. */ + -webkit-user-select: none; /* Chrome all / Safari all */ + -moz-user-select: none; /* Firefox all */ + -ms-user-select: none; /* IE 10+ */ + -o-user-select: none; + user-select: none; +} + +/* Playback technology elements expand to the width/height of the containing div. +