From 49d54c0c3199fb8e380ce68f8fb08a308ddf56a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Eduardo?= Date: Mon, 25 Dec 2017 16:58:41 -0500 Subject: =?UTF-8?q?migraci=C3=B3n=20mayor=20a=20smarty=20PHP?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/librevideojs/css/teal.less | 1427 ---------------------------------------- 1 file changed, 1427 deletions(-) delete mode 100644 lib/librevideojs/css/teal.less (limited to 'lib/librevideojs/css/teal.less') diff --git a/lib/librevideojs/css/teal.less b/lib/librevideojs/css/teal.less deleted file mode 100644 index 1cd98f7..0000000 --- a/lib/librevideojs/css/teal.less +++ /dev/null @@ -1,1427 +0,0 @@ -/*! -LibreVideoJS -Version 2.0 -Copyright 2017, Jesus E. -*/ - -// To customize the player skin, change the values of the variables or edit the -// CSS below. -// (This file uses LESS. Learn more at http://lesscss.org/) - -// The base font size controls the size of everything, not just text. All -// dimensions use em-based sizes so that the scale along with the font size. -// Try increasing it to 20px and see what happens. -@base-font-size: 12px; -@touch-device-font-size: 15px; - -// The main font color controls the color of the text and the icons (font icons) -@main-font-color: #ffffff; // e.g. rgb(255, 255, 255) or #ffffff -@primary-color: #1de9b6; -@primary-dark-color: #007c5d; -@clouds-color: #d6dbdf; - -// Menu - Subtitles/captions -@text-dark-color: #0d1f2c; -@caption-color: #ffffff; //other color #ffed00; - -// The default color of control backgrounds is mostly black but with a little -// bit of blue so it can still be seen on all black video frames, which are -// common. -@control-bg-color: #232221; // e.g. rgb(255, 255, 255) or #ffffff -@control-bg-alpha: 0.8; // 1.0 = 100% opacity, 0.0 = 0% opacity - -// The slider bar color is used for the progress bar and the volume bar -@slider-bar-color: #66A8CC; // e.g. rgb(255, 255, 255) or #ffffff -// The background of the progress bar and volume bar have a lined pattern that -// is created from a base64 encoded image. You can generate your own pattern at -// http://www.patternify.com/ then replace the value in the quotes with your own -@slider-bar-pattern: ~'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAP0lEQVQIHWWMAQoAIAgDR/QJ/Ub//04+w7ZICBwcOg5FZi5iBB82AGzixEglJrd4TVK5XUJpskSTEvpdFzX9AB2pGziSQcvAAAAAAElFTkSuQmCC'; -// The color of the slider background -@slider-background-color: #333333; -@slider-background-alpha: 0.9; // 1.0 = 100% opacity, 0.0 = 0% opacity - -// The "Big Play Button" is the play button that shows before the video plays. -// To center it set the align values to center and middle. The typical location -// of the button is the center, but there is trend towards moving it to a corner -// where it gets out of the way of valuable content in the poster image. -@big-play-align: left; // left, center, or right -@big-play-vertical-align: top; // top, middle, or bottom -// The button colors match the control colors by default but you can customize -// them by replace the variables (@control-bg-color) with your own color values. -@big-play-bg-color: @control-bg-color; -@big-play-bg-alpha: @control-bg-alpha; -// The font size is what makes the big play button, big. All width/height values -// use ems, which are a multiple of the font size. -// If the @base-font-size is 10px, then 3em equals 30px. -@big-play-font-size: 2em; -// Now that font size is set, the following em values will be a multiple of the -// new font size. If @big-play-font-size is 3em (30px), then setting the any of -// the following values to 2em would equal 60px. 2 * font-size -@big-play-margin: 0.5em; -//@big-play-width: 1em; -@big-play-width: 3.8em; -//@big-play-height: 1em; -@big-play-height: 2.6em; -@big-play-border-radius: 0.8em; -@big-play-border-width: 0.1em; -@big-play-border-color: #3b4249; - -/* SKIN -================================================================================ -The main class name for all skin-specific styles. To make your own skin, -replace all occurrences of 'vjs-flat-skin' with a new name. Then add your new -skin name to your video tag instead of the default skin. -e.g.