diff --git a/.gitignore b/.gitignore index 6e3b227f..b64cd8a4 100644 --- a/.gitignore +++ b/.gitignore @@ -48,7 +48,7 @@ media/ *pods/fixtures/ pod_project/urls.py ## Lang files -*.po +locale/ *.mo ## Others jwplayer/ diff --git a/pod_project/core/management/__init__.py b/pod_project/core/management/__init__.py new file mode 100755 index 00000000..e69de29b diff --git a/pod_project/core/management/commands/__init__.py b/pod_project/core/management/commands/__init__.py new file mode 100755 index 00000000..e69de29b diff --git a/pod_project/core/management/commands/add_user.py b/pod_project/core/management/commands/add_user.py new file mode 100755 index 00000000..84006b4d --- /dev/null +++ b/pod_project/core/management/commands/add_user.py @@ -0,0 +1,81 @@ +# -*- coding: utf-8 -*- + +import commands +import csv +import os + +from django.core.management.base import NoArgsCommand + +import random +import string + +from django.contrib.auth.models import User +from django.core.validators import validate_email +from django.core.exceptions import ValidationError + + + +from django.db import IntegrityError +from django.core.mail import send_mail +from random import choice +from string import digits, letters +from core.models import UserProfile + +def _pw(length=6): + s = '' + for i in range(length): + s += random.choice(digits + letters) + return s + +class Command(NoArgsCommand): + + + def handle_noargs(self, **options): + """ Encode all pending streams """ + members = open('import_user.csv', "rU") + data = csv.reader(members, delimiter=';', quotechar='"') + #data = csv.DictReader(members) + + for row in data: + #print u'%s' %row + nom = row[0] + prenom = row[1] + email = row[2] + is_staff = True if row[3]=="1" else False + detail="" + try: + detail = u'%s' %unicode(row[4], errors='ignore') + except Exception as e: + print u'\nError in adding info video ***** Unexpected error :%r' % e + + print nom, prenom, email, is_staff, detail + try: + validate_email(email) + tokens = email.split('@') + username = tokens[0] + #print "email valide : %s" %username + add_user(nom, prenom, username, email, is_staff, detail) + except ValidationError: + print "email is not valid" + + + +def add_user(nom, prenom, username, email, is_staff, detail): + pwd = ''.join([random.choice(string.digits + string.letters) for i in range(0, 10)]) + message = u'Bonjour,\nUn compte a été créé pour vous sur PodMoot. Voici les informations de connexion : \n - Identifiant : %(id)s\n - Mot de passe : %(mdp)s\n A bientôt sur http://podmoot.univ-lille1.fr.\nCordialement, \n L\'équipe de Pod.' %{"id":username, "mdp":pwd} + try: + user = User.objects.create_user(username, email, pwd) + user.is_staff = is_staff + user.first_name = prenom + user.last_name = nom + user.save() + profile, created = UserProfile.objects.get_or_create(user=user) + profile.commentaire = u'%s \n- %s' %(detail,message) + profile.save() + #send email + send_mail('Votre compte sur PodMoot', message, 'nicolas.can@univ-lille1.fr',[email], fail_silently=False) + print "%s - %s => ok" %(username,pwd) + except IntegrityError: + print "IntegrityError %s" %username + + diff --git a/pod_project/core/models.py b/pod_project/core/models.py index edc00b9d..3a532704 100755 --- a/pod_project/core/models.py +++ b/pod_project/core/models.py @@ -156,9 +156,9 @@ class Video(models.Model): editable=False) owner = models.ForeignKey(User, verbose_name=_('Owner')) - date_added = models.DateField(_('Creation date'), default=datetime.now) + date_added = models.DateField(_('Date added'), default=datetime.now) date_evt = models.DateField( - _(u'Date of the event'), default=datetime.now, blank=True, null=True) + _(u'Date of event'), default=datetime.now, blank=True, null=True) description = RichTextField( _('Description'), config_name='complete', blank=True) diff --git a/pod_project/core/static/JS/enrich/player.js b/pod_project/core/static/JS/enrich/player.js deleted file mode 100644 index ea8039c0..00000000 --- a/pod_project/core/static/JS/enrich/player.js +++ /dev/null @@ -1,642 +0,0 @@ -/* -Copyright (C) 2014 Nicolas Can -Ce programme est un logiciel libre : vous pouvez -le redistribuer et/ou le modifier sous les termes -de la licence GNU Public Licence telle que publiée -par la Free Software Foundation, soit dans la -version 3 de la licence, ou (selon votre choix) -toute version ultérieure. -Ce programme est distribué avec l'espoir -qu'il sera utile, mais SANS AUCUNE -GARANTIE : sans même les garanties -implicites de VALEUR MARCHANDE ou -D'APPLICABILITÉ À UN BUT PRÉCIS. Voir -la licence GNU General Public License -pour plus de détails. -Vous devriez avoir reçu une copie de la licence -GNU General Public Licence -avec ce programme. Si ce n'est pas le cas, -voir http://www.gnu.org/licenses/ -*/ -/******* VARIABLES ********/ -var myPlayer; -var currentslide = ''; -var timestamps = []; -var changeRes = false; -var animation_complete = true; -var list_disp = { - '50/50': '50/50', - '30/70': '30/70', - '70/30': '70/30', - '100/20': 'Pip media', - '20/100': 'Pip video', - '100/0': 'only video', - '0/100': 'only media' -}; -var defaultDisp = '50/50'; -var slide_height = 90; //96 en fullscreen -var videozindex = 1000; -var isPlaying = false; -var increase_view_count = false; -var start; -/* check bandwidth */ -var previoustime = 0; -var previousuploaded = 0; -var mediumspeed = 0; -var intcheck = 0; -var changeResBd = false; -/******* DOC READY ********/ -$(document).ready(function() { - loadVideo(); - // Remove right click on video - $('#player_video').bind('contextmenu', function() { return false; }); -}); - -/******* FUNCTION ********/ -function loadVideo() { - videojs.options.flash.swf = 'video-js.swf'; - videojs('player_video').ready(function() { - // PLAYER READY - myPlayer = this; - - myPlayer.on('loadstart', loadstart); - myPlayer.on('loadedmetadata', loadedmetadata); - myPlayer.on('error', error); // error log for dev - myPlayer.on('durationchange', loadChapBar); - myPlayer.on('progress', progress); - myPlayer.on('timeupdate', timeupdate); - - myPlayer.on('fullscreenchange', function() { - if ($('#player_video').hasClass('vjs-fullscreen')) { - slide_height = 96; - $('.vjs-slide').height( '96%' ); - $('.vjs-title').css('font-size', '8em'); - } else { - slide_height = 90; - $('.vjs-slide').height( '90%' ); - $('.vjs-title').css('font-size', '3em'); - } - }); - - // Load plugin - var defsize = decodeURIComponent($.urlParam('size')); - if (defsize != '480' && defsize != '720') { - defsize = 240; - } - - if ($('ul#slides li[data-type!="None"]').length > 0) { - myPlayer.displaySelector({ - default_disp: '100/0', - list_disp: list_disp - }); - } - $('ul#slides').hide(); - - if ($('ul#chapters li').length > 0) { - var list_chap = {}; - $('ul#chapters li').each(function () { - list_chap[$(this).attr('data-start')] = $(this).attr('data-title'); - }); - $('ul#chapters').hide(); - } - - $('div.vjs-slide').hide(); - $('div.vjs-title').hide(); - - myPlayer.on('changeDisp', function() { - isPlaying = !myPlayer.paused(); - changeDisplay(myPlayer.getCurrentDisp()); - }); - - // LOAD Z-INDEX - $('video').css('zIndex', videozindex + 1); - $('.vjs-slide').css('zIndex', videozindex + 2); - $('.vjs-title').css('zIndex', videozindex + 3); - $('.vjs-big-play-button').css('zIndex', videozindex + 5); - $('.vjs-loading-spinner').css('zIndex', videozindex + 6); - $('.vjs-text-track-display').css('zIndex', videozindex + 7); - $('.vjs-control-bar').css('zIndex', videozindex + 8); - - var IS_MOBILE = /mobile|android/i.test (navigator.userAgent); - var IS_IPHONE = (/iPhone/i).test(navigator.userAgent); - var IS_IPAD = (/iPad/i).test(navigator.userAgent); - var IS_IPOD = (/iPod/i).test(navigator.userAgent); - var IS_IOS = IS_IPHONE || IS_IPAD || IS_IPOD; - var IS_ANDROID = (/Android/i).test(navigator.userAgent); - /*************************************************************************/ - if (is_iframe === true) { - $('div#info_video') - .appendTo($('#player_video')) - .attr( - 'style', - 'z-index: ' + (videozindex + 3) + ';' + - 'position: absolute;' + - 'top: 10%;' + - 'left: 10%;' + - 'width: 80%;' + - 'height: 80%;' + - 'background-color: #fff;' - ) - .hide(); - $('#player') - .css('padding', 0) - .css('overflow', 'hidden'); - $('body').attr('style', 'margin: 0;padding: 0;overflow: hidden;'); - $('#player_video').attr('style', 'position:absolute; top:0; left:0; width:100%; height:100%'); - $('#page-video') - .height('100%') - .css('overflow', 'hidden'); - $('.vjs-big-play-button').css('zIndex', videozindex + 4); - videojs.Info = videojs.Button.extend({ - /** @constructor */ - init: function(player, options) { - videojs.Button.call(this, player, options); - this.on('click', this.onClick); - } - }); - - videojs.Info.prototype.onClick = function() { - if ($('div#info_video').is(':visible')) { - $('div#info_video').hide(); - } else { - $('div#info_video').show(); - } - }; - - // Note that we're not doing this in prototype.createEl() because - // it won't be called by Component.init (due to name obfuscation). - var createInfoButton = function() { - var props = { - className: 'vjs-info-button vjs-control', - innerHTML: '
' + ('Info') + '
', - role: 'button', - 'aria-live': 'polite', // let the screen reader user know that the text of the button may change - tabIndex: 0 - }; - return videojs.Component.prototype.createEl(null, props); - }; - - var info; - videojs.plugin('info', function() { - var options = {'el': createInfoButton()}; - info = new videojs.Info(this, options); - this.controlBar.el().appendChild(info.el()); - }); - - myPlayer.info({}); - } - /*************************************************************************/ - if (IS_MOBILE) { - if (is_iframe === false && ($('ul#slides li[data-type!="None"]').length > 0 || $('ul#chapters li').length > 0)) { - $('#player').after(''); - if ($('ul#slides li[data-type!="None"]').length > 0) { - var disp_html = ''; - $('#mobile_info').append(disp_html); - - $('#mobile_disp a').click(function(e) { - e.preventDefault(); - $('#mobile_disp a').removeClass(); - $(this).addClass('current'); - myPlayer.currentDisp = $(this).attr('href').replace('#', ''); - changeDisplay($(this).attr('href').replace('#', '')); - }); - } - if ($('ul#chapters li').length > 0) { - var chap_html = ''; - $('#mobile_info').append(chap_html); - $('#mobile_chap a').click(function(e) { - e.preventDefault(); - $('#mobile_chap a').removeClass(); - $(this).addClass('current'); - myPlayer.currentTime($(this).attr('href').replace('#', '')); - }); - } - } - } else { - // On a ajoute l'overview - if ($('.vjs-control-bar').length && overview && overview != '') { - // Not using jquery to improve perf - $('.vjs-control-bar').append( - '' - ); - $('#preview').css('zIndex', videozindex + 5); - var pre = $('#preview').get(0); - var preimg = $('#previewimg').get(0); - pre.style.width = (overview_width / 100) + 'px'; - pre.style.height = overview_height + 'px'; - pre.style.top = 0 - ($('.vjs-control-bar').height() + $( '#preview' ).height()) + 'px'; - preimg.style.top = '0px'; - var progressControl = myPlayer.controlBar.progressControl; - - $('.vjs-progress-holder').mousemove(function(event) { - left = event.pageX || (event.clientX + document.body.scrollLeft + document.documentElement.scrollLeft); - // Subtract the page offset of the progress control - left -= progressControl.el().getBoundingClientRect().left + window.pageXOffset; - percent = (left / progressControl.el().getBoundingClientRect().width) * 100; - - left = left - (pre.offsetWidth / 2); - - if (left < 0) { - left = 0; - } else if (left > (progressControl.el().getBoundingClientRect().width - pre.offsetWidth)) { - left = progressControl.el().getBoundingClientRect().width - pre.offsetWidth; - } - pre.style.left = left + 'px'; - preimg.style.left = '-' + parseInt(percent) * overview_width / 100 + 'px'; - }); - $('.vjs-progress-holder').mouseenter(function(event) { - pre.hidden = false; - pre.style.display = 'block'; - }); - $('.vjs-progress-holder').mouseleave(function(event) { - pre.hidden = true; - pre.style.display = 'none'; - }); - } - } - /*************************************************************************/ - if (logo_player != '') { - var elem = document.createElement('img'); - elem.setAttribute('src', logo_player); - elem.setAttribute('height', '90%'); - elem.setAttribute('alt', 'Flower'); - myPlayer.controlBar.el().appendChild(elem); - } - /*************************************************************************/ - start = decodeURIComponent($.urlParam('start')); - /***************************is_chaptering*********************************/ - - if (typeof is_chaptering != 'undefined' && is_chaptering === true ) { - addRangeSlider(); - } - }); -} - -function changeDisplay(disp, duration) { - duration = (typeof duration == 'undefined' ? 500 : duration); - vid_width = parseInt(disp.split('/')[0]); - slide_width = parseInt(disp.split('/')[1]); - - if (animation_complete === true) { - animation_complete = false; - if (vid_width == 100 && slide_width > 0) { - $('video').css('zIndex', videozindex + 1); - $('.vjs-slide').css('zIndex', videozindex + 2); - - $('.video-js .vjs-tech').animate( - { - width: vid_width + '%', - height: '100%', - left: '0%' - }, - duration - ); - $('.video-js .vjs-slide').animate( - { - width: slide_width + '%', - height: slide_width + '%', - left: (100 - slide_width) + '%' - }, - duration, - function() { - animation_complete = true; - } - ); - } else { - if (slide_width == 100 && vid_width > 0) { - $('video').css('zIndex', videozindex + 2); - $('.vjs-slide').css('zIndex', videozindex + 1); - $('.video-js .vjs-tech').animate( - { - width: vid_width + '%', - height: vid_width + '%', - left: '0%' - }, - duration - ); - $('.video-js .vjs-slide').animate( - { - width: slide_width + '%', - height: slide_height + '%', - left: (100 - slide_width) + '%' - }, - duration,function() { - animation_complete = true; - } - ); - } else { - $('.video-js .vjs-tech').animate( - { - width: vid_width + '%', - height: '100%', - left: '0%' - }, - duration - ); - $('.video-js .vjs-slide').animate( - { - width: slide_width + '%', - height: slide_height + '%', - left: (100 - slide_width) + '%' - }, - duration, - function() { - animation_complete = true; - } - ); - } - } - if (isPlaying) { - myPlayer.play(); - } else { - myPlayer.pause(); - } - } -} - -function csrfSafeMethod(method) { - // These HTTP methods do not require CSRF protection - return (/^(GET|HEAD|OPTIONS|TRACE)$/.test(method)); -} - -$.ajaxSetup({ - crossDomain: false, // Obviates need for sameOrigin test - beforeSend: function(xhr, settings) { - if (!csrfSafeMethod(settings.type)) { - xhr.setRequestHeader('X-CSRFToken', csrftoken); - } - } -}); -var csrftoken = getCookie('csrftoken'); - -$(document).on( - 'click', - 'button#button_video_note', - function (event) { - event.preventDefault(); - if (expiration_date_second > 5) { - var jqxhr = $.post( - $( '#video_note_form' ).attr('action'), - $( '#video_note_form' ).serialize(), - function(data) { - var alert_text = - '
' + - '×' + - data + - '
'; - $('body').append(alert_text); - $('#myAlert').on('closed.bs.alert', function () { - $(this).remove(); - }); - $('#myAlert').alert(); - window.setTimeout(function() { $('#myAlert').alert('close'); }, 3000); - } - ); - jqxhr.fail(function(data) { - alert('Error '+data); - }); - } else { - alert(expiredsession); - location.reload(); - } - } -); - -function timeupdate(event) { - var t = myPlayer.currentTime(); - var all = timestamps.length; - var slide = false; - var change_slide = false; - var current_slide_type = 'None'; - if (typeof is_chaptering == 'undefined' ) { - if (parseInt(t) == 1 && increase_view_count == false) { - increase_view_count = true; - $.post( - location, - { - action: 'increase_view_count' - }, - function(data) { - } - ); - } - if (parseInt(t) !=1 && increase_view_count == true) { - increase_view_count = false; - } - } - - var i = 0; - for (i; i < all; i++) { - if (t >= timestamps[i].start && t <= timestamps[i].end) { - slide = true; - - if (currentslide != $(timestamps[i].elm).attr('data-id')) { - if ($(timestamps[i].elm).data('stop-video') == 'True') { - myPlayer.pause(); - } - isPlaying = !myPlayer.paused(); - - if ($(timestamps[i].elm).data('type') != 'None') { - if(!$('.vjs-slide').is(':visible')) { - $('.vjs-slide').show(); - // performClick - $('div.vjs-disp-button').find('li.vjs-menu-item:contains(' + defaultDisp + ')').trigger('click'); - if ((myPlayer.currentDisp == defaultDisp) == false) { - myPlayer.currentDisp = defaultDisp; - changeDisplay(defaultDisp); - } - } - } - - timestamps[i].elm.addClass('current'); - change_slide = true; - currentslide = $(timestamps[i].elm).attr('data-id'); - current_slide_type = $(timestamps[i].elm).attr('data-type'); - $('.vjs-slide').html(' '); - if (current_slide_type != 'None') { - var noscriptContents = $($(timestamps[i].elm).find('noscript').text()); - $('.vjs-slide').html('
 
'); - $('.vjs-slide article').append(noscriptContents); - } - - // Show title on overlay - $('.vjs-title') - .text($(timestamps[i].elm).attr('data-title')) - .fadeIn('slow') - .delay(3000) - .fadeOut('slow'); - break; - } - } else { - timestamps[i].elm.removeClass('current'); - } - } - - if (slide == true && change_slide == true ) { - isPlaying = !myPlayer.paused(); - if (current_slide_type != 'None') { - changeDisplay(myPlayer.getCurrentDisp(), 1000); - } else { - changeDisplay('100/0'); - } - } - if (currentslide != '' && slide == false ){ - for (i = 0; i < all; i++) { - if (t < timestamps[i].start) { - break; - } - } - isPlaying = !myPlayer.paused(); - currentslide = ''; - $('.vjs-slide').html(' '); - $('.vjs-title').text('').hide(); - if (i == all || timestamps[i].start-parseInt(t) > 2) { - changeDisplay('100/0', 1000); - } - } - -} - -$.urlParam = function(name) { - var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(window.location.href); - if (results == null){ - return null; - } else { - return results[1] || 0; - } -}; - -function loadstart() { - if (changeRes == true) { - changeRes = false; - myPlayer.play(); - } else { - if (start && start != 'null' && start !=0) { - myPlayer.play(); - } else if (typeof is_chaptering != 'undefined' && is_chaptering == true) { - myPlayer.play(); - } - } -} - -function loadedmetadata() { - if (changeRes == false && start && start != 'null' && start != 0) { - myPlayer.currentTime(start); - } -} - - -function loadChapBar() { - if ($('ul#slides').length != 0) { - $('div.vjs-title').appendTo($('#player_video')); - $('div.vjs-slide').appendTo($('#player_video')); - - if ($('.vjs-chapbar-holder').length == 0) { - if ($('div.vjs-progress-holder').length == 0) { - $('#player_video').append( - '
' - ); - } else { - $('div.vjs-progress-holder').append( - '
' - ); - } - } else { - $('.vjs-chapbar-holder').html(''); - } - - if (myPlayer.duration() != 0) { - var duration_vid = myPlayer.duration(); - $('ul#slides li').each(function() { - var chapbar_left = (parseInt($(this).data('start')) / duration_vid) * 100; - var chapbar_width = ((parseInt($(this).data('end')) / duration_vid) * 100) - chapbar_left; - var data_id = $(this).data('id'); - $('.vjs-chapbar-holder').append( - '
' - ); - if ($(this).attr('data-start')) { - timestamps.push({ - start : +$(this).attr('data-start'), - end : +$(this).attr('data-end'), - elm : $(this) - }); - } - }); - if (typeof is_chaptering != 'undefined' && is_chaptering == true) { - $('.vjs-chapbar-chap').on('click', function(e) { - chapbar($(this)); - }); - } - } - } -} - -/** - * Calcule de manière automatique la résolution la plus optimisée pour le débit de la connexion de l'utilisateur - */ -function progress() { - if (typeof myPlayer.availableRes != 'undefined' && myPlayer.availableRes.length > 0 && changeResBd == false) { - var howMuchIsDownloaded = myPlayer.bufferedPercent(); - var seconds = Math.round(Date.now() / 1000); - var filesize = myPlayer.currentSrc().indexOf('video/mp4') != -1 ? videosize_mp4 : videosize_webm; - - if (seconds != previoustime && howMuchIsDownloaded < 0) { - intcheck++; - var lapstime = seconds - previoustime; - var downloaded = filesize * howMuchIsDownloaded; - var laspdl = downloaded - previousuploaded; - mediumspeed = mediumspeed + Math.round((laspdl / lapstime) / 1000); - - if (intcheck % 4 == 0) { - mediumspeed = mediumspeed / 4; - if (mediumspeed > 2200 && typeof myPlayer.availableRes['1080'] != 'undefined') { - $('div.vjs-res-button').find('li:contains("1080p")').trigger('click'); - changeResBd = true; - } else { - if (mediumspeed > 1200 && typeof myPlayer.availableRes['720'] != 'undefined') { - $('div.vjs-res-button').find('li:contains("720p")').trigger('click'); - changeResBd = true; - } else { - if (mediumspeed > 700 && typeof myPlayer.availableRes['480'] != 'undefined') { - $('div.vjs-res-button').find('li:contains("480p")').trigger('click'); - changeResBd = true; - } - } - } - } else if (howMuchIsDownloaded == 1) { - $('div.vjs-res-button').find('li:contains("1080p")').trigger('click'); - changeResBd = true; - } - - previoustime = seconds; - previousuploaded = downloaded; - } else if (howMuchIsDownloaded == 1) { - $('div.vjs-res-button').find('li:contains("1080p")').trigger('click'); - changeResBd = true; - } - } -} - -function error(err) { - // prints the name of the error - alert(err.name); - // prints the description that is also shown in the error console - console.log(err.message); - // this works only in some browsers - // line and stack are not supported by all vendors - console.log(err.line, err.stack); -} \ No newline at end of file diff --git a/pod_project/core/static/JS/navigation.js b/pod_project/core/static/JS/navigation.js index 0c89fd17..fe04b897 100755 --- a/pod_project/core/static/JS/navigation.js +++ b/pod_project/core/static/JS/navigation.js @@ -190,14 +190,15 @@ $(document).on('change', '#autoplay', function() { $(document).on('change', "#displaytime", function(e) { //$('#txtpartage').val(($('#displaytime:checked').val()) ? $('#txtpartage').val().replace(/(start=)\d+/, '$1'+parseInt(myPlayer.currentTime())) : $('#txtpartage').val().replace(/(start=)\d+/, '$10')); if($('#displaytime').is(':checked')){ - if($('#txtpartage').val().indexOf('start')>0){ - $('#txtpartage').val().replace(/(start=)\d+/, '$1'+parseInt(myPlayer.currentTime())); - }else { + if($('#txtpartage').val().indexOf('start')<0){ $('#txtpartage').val($('#txtpartage').val()+'&start='+parseInt(myPlayer.currentTime())); + var valeur = $('#txtintegration').val(); + $('#txtintegration').val(valeur.replace('/?', '/?start=' + parseInt(myPlayer.currentTime())+'&')); } $('#txtposition').val(myPlayer.currentTime().toHHMMSS()); }else{ $('#txtpartage').val($('#txtpartage').val().replace(/(&start=)\d+/, '')); + $('#txtintegration').val($('#txtintegration').val().replace(/(start=)\d+&/, '')); $('#txtposition').val(""); } }); @@ -213,33 +214,16 @@ $(document).on('click', "#share a", function() { }); /** end video share embed **/ -$(document).on('click', 'button#button_video_favorite', function (event) { +$(document).on('click', 'button#button_video_report', function (event) { event.preventDefault(); - if($( "#video_favorite_form" ).length==0){ + if($(this).parent('form').length==0){ alert($(this).children('span.sr-only').text()); } else { if(expiration_date_second > 5) { - var spanchild = $(this).children("span"); - var jqxhr = $.post( - $( "#video_favorite_form" ).attr('action'), - $( "#video_favorite_form" ).serialize(), - function(data) { - var alert_text='
×'+data+'
'; - $('body').append(alert_text); - $("#myAlert").on('closed.bs.alert', function () { - $(this).remove(); - }); - $("#myAlert").alert(); - if(spanchild.attr('id')=="fav") spanchild.attr('id', 'mark-as-fav'); - else spanchild.attr('id', 'fav'); - window.setTimeout(function() { $("#myAlert").alert('close'); }, 3000); + //show modal box with comment input and save/cancel buttons + $("#modal_report_form").modal({ + show: true, }); - jqxhr.fail(function(data) { - alert('Error '+data); - //$('#player').after('
'); - //$('article.messages').html("Error").delay(3000).fadeOut('slow', function(){$(this).remove();}); - //$(".alert").alert('close') - }); } else { alert(expiredsession); location.reload(); @@ -248,6 +232,25 @@ $(document).on('click', 'button#button_video_favorite', function (event) { return false; }); +function show_messages(msg, reload, msgclass) { + + if(!msgclass||msgclass==='undefined') msgclass='alert-danger'; + $("#show_messages").attr('class',''); + $("#show_messages").attr('class','alert '+msgclass+' collapse'); + if($("#show_messages").length) { + if(reload==true) { + $("#show_messages").html(msg).fadeIn().delay(4000).fadeOut(function(){location.reload();}); + } else { + if(msgclass=='alert-info') + $("#show_messages").html(msg).fadeIn().delay(3000).fadeOut(); + else + $("#show_messages").html(msg).fadeIn(); + } + } +} +$(document).on('click', 'input#close_messages', function() { + $("#show_messages").fadeOut(); +}); /** END EVTS PERMANENT **/ @@ -269,30 +272,36 @@ Number.prototype.toHHMMSS = function () { // Edit the iframe and share link code function writeInFrame() { // Iframe - var str = $('#txtintegration').html(); + var str = $('#txtintegration').val(); // Video size var $integration_size_option = $('#integration_size').find('OPTION:selected'); var width = $integration_size_option.attr('data-width'); var height = $integration_size_option.attr('data-height'); var size = $integration_size_option.attr('value'); - str = str.replace(/(width=")\d+("\W+height=")\d+/, '$1' + width + '$2' + height); + str = str.replace(/(width=)\S+/, '$1' + '\"' + width +'\"'); + str = str.replace(/(height=)\S+/, '$1' + '\"' + height +'\"'); str = str.replace(/(size=)\d+/, '$1' + size); // Autoplay if ($('#autoplay').is(':checked')) { - str = str.replace('is_iframe=true', 'is_iframe=true&autoplay=true'); - } else if (str.indexOf('autoplay=true') >= 0) { - str = str.replace('&autoplay=true', ''); + if(str.indexOf('autoplay=true') < 0){ + str = str.replace('is_iframe=true', 'is_iframe=true&autoplay=true'); + } + } else if (str.indexOf('autoplay=true') > 0) { + str = str.replace('&autoplay=true', ''); } - $('#txtintegration').html(str); + $('#txtintegration').val(str); // Share link var link = $('#txtpartage').val(); link = link.replace(/(size=)\d+/, '$1' + size); // Autoplay if ($('#autoplay').is(':checked')) { - link = link.replace('is_iframe=true', 'is_iframe=true&autoplay=true'); - } else if (link.indexOf('autoplay=true') >=0) { - link = link.replace('&autoplay=true', ''); + if(link.indexOf('autoplay=true') <0){ + link = link.replace('is_iframe=true', 'is_iframe=true&autoplay=true'); + } + + } else if (link.indexOf('autoplay=true') >0) { + link = link.replace('&autoplay=true', ''); } $('#txtpartage').val(link); } diff --git a/pod_project/core/static/JS/player.js b/pod_project/core/static/JS/player.js index 2b8890fd..edf2e504 100755 --- a/pod_project/core/static/JS/player.js +++ b/pod_project/core/static/JS/player.js @@ -54,6 +54,10 @@ $(document).ready(function() { /******* FUNCTION ********/ function loadVideo() { + //reinitialize somes var : + currentslide = ''; + timestamps = []; + videojs.options.flash.swf = 'video-js.swf'; videojs('player_video').ready(function() { // PLAYER READY @@ -65,7 +69,16 @@ function loadVideo() { myPlayer.on('durationchange', loadChapBar); myPlayer.on('progress', progress); myPlayer.on('timeupdate', timeupdate); - + myPlayer.on('firstplay', function(){ + $.post( + location, + { + action: 'increase_view_count' + }, + function(data) { + } + ); + }); myPlayer.on('fullscreenchange', function() { if ($('#player_video').hasClass('vjs-fullscreen')) { slide_height = 96; @@ -281,11 +294,6 @@ function loadVideo() { } /*************************************************************************/ start = decodeURIComponent($.urlParam('start')); - /***************************is_chaptering*********************************/ - - if (typeof is_chaptering != 'undefined' && is_chaptering === true ) { - addRangeSlider(); - } }); } @@ -425,22 +433,6 @@ function timeupdate(event) { var slide = false; var change_slide = false; var current_slide_type = 'None'; - if (typeof is_chaptering == 'undefined' ) { - if (parseInt(t) == 1 && increase_view_count == false) { - increase_view_count = true; - $.post( - location, - { - action: 'increase_view_count' - }, - function(data) { - } - ); - } - if (parseInt(t) !=1 && increase_view_count == true) { - increase_view_count = false; - } - } var i = 0; for (i; i < all; i++) { @@ -583,11 +575,13 @@ function loadChapBar() { }); } }); + /* if (typeof is_chaptering != 'undefined' && is_chaptering == true) { $('.vjs-chapbar-chap').on('click', function(e) { chapbar($(this)); }); } + */ } } } @@ -641,7 +635,7 @@ function progress() { function error(err) { // prints the name of the error - alert(err.name); + // alert(err.name); // prints the description that is also shown in the error console console.log(err.message); // this works only in some browsers diff --git a/pod_project/core/static/LILLE1/images/1318-la-ville-de-saint-lo-a-travers-les-ages_160_display_selection.png b/pod_project/core/static/LILLE1/images/1318-la-ville-de-saint-lo-a-travers-les-ages_160_display_selection.png deleted file mode 100755 index 37425cad..00000000 Binary files a/pod_project/core/static/LILLE1/images/1318-la-ville-de-saint-lo-a-travers-les-ages_160_display_selection.png and /dev/null differ diff --git a/pod_project/core/static/LILLE1/images/31-pourquoi-faut-il-limiter-la-vitesse-pour_55_display_selection.png b/pod_project/core/static/LILLE1/images/31-pourquoi-faut-il-limiter-la-vitesse-pour_55_display_selection.png deleted file mode 100755 index f5bbd201..00000000 Binary files a/pod_project/core/static/LILLE1/images/31-pourquoi-faut-il-limiter-la-vitesse-pour_55_display_selection.png and /dev/null differ diff --git a/pod_project/core/static/LILLE1/images/955-1857_71_display_selection.png b/pod_project/core/static/LILLE1/images/955-1857_71_display_selection.png deleted file mode 100755 index f0a103c5..00000000 Binary files a/pod_project/core/static/LILLE1/images/955-1857_71_display_selection.png and /dev/null differ diff --git a/pod_project/core/static/LILLE1/images/967-presentation-de-verviers-belgique_50_display_selection.png b/pod_project/core/static/LILLE1/images/967-presentation-de-verviers-belgique_50_display_selection.png deleted file mode 100755 index bff1eadb..00000000 Binary files a/pod_project/core/static/LILLE1/images/967-presentation-de-verviers-belgique_50_display_selection.png and /dev/null differ diff --git a/pod_project/core/static/LILLE1/images/971-audiovisuel_clip_sophie-destrau_73_display_selection.png b/pod_project/core/static/LILLE1/images/971-audiovisuel_clip_sophie-destrau_73_display_selection.png deleted file mode 100755 index 19831e1e..00000000 Binary files a/pod_project/core/static/LILLE1/images/971-audiovisuel_clip_sophie-destrau_73_display_selection.png and /dev/null differ diff --git a/pod_project/core/static/LILLE1/images/986-de-la-guadeloupe-au-senegal-dans-lil_80_display_selection.png b/pod_project/core/static/LILLE1/images/986-de-la-guadeloupe-au-senegal-dans-lil_80_display_selection.png deleted file mode 100755 index 501ec647..00000000 Binary files a/pod_project/core/static/LILLE1/images/986-de-la-guadeloupe-au-senegal-dans-lil_80_display_selection.png and /dev/null differ diff --git a/pod_project/core/static/LILLE1/images/favicon.ico b/pod_project/core/static/LILLE1/images/favicon.ico deleted file mode 100644 index 6d4de962..00000000 Binary files a/pod_project/core/static/LILLE1/images/favicon.ico and /dev/null differ diff --git a/pod_project/core/static/LILLE1/images/kerkennah_technique-de-peche-fixe_amel_display_selection.jpg b/pod_project/core/static/LILLE1/images/kerkennah_technique-de-peche-fixe_amel_display_selection.jpg deleted file mode 100755 index 61ce73d3..00000000 Binary files a/pod_project/core/static/LILLE1/images/kerkennah_technique-de-peche-fixe_amel_display_selection.jpg and /dev/null differ diff --git a/pod_project/core/static/LILLE1/images/lille_display_selection.jpg b/pod_project/core/static/LILLE1/images/lille_display_selection.jpg deleted file mode 100755 index 996be1e8..00000000 Binary files a/pod_project/core/static/LILLE1/images/lille_display_selection.jpg and /dev/null differ diff --git a/pod_project/core/static/LILLE1/images/ptiwi-bio-choco-noir.jpg b/pod_project/core/static/LILLE1/images/ptiwi-bio-choco-noir.jpg deleted file mode 100755 index 683f421c..00000000 Binary files a/pod_project/core/static/LILLE1/images/ptiwi-bio-choco-noir.jpg and /dev/null differ diff --git a/pod_project/core/static/LILLE1/index.html b/pod_project/core/static/LILLE1/index.html deleted file mode 100755 index e414ae27..00000000 --- a/pod_project/core/static/LILLE1/index.html +++ /dev/null @@ -1,555 +0,0 @@ - - - - - - -Lille1.POD - - - - - - - - - - - - - - - -
-
-
-
Université Lille1
-
-
-
- - -
- -
-
-
-
-
- - - - -
-
-
- -

Bienvenue !

-
-
-
-
4 vidéos trouvées
-
-
-
- - - -
-
-
-
-

Avec POD, tu peux :

-
-
- -

Avec Lille1.pod, vous avez accès à des centaines de vidéos produites par ceux qui font l'université Lille1. Des cours filmés aux reportages amateurs, ne ratez plus aucun évènement sur le campus !

-

Lille1.pod vous permet d'exporter vos vidéos par un simple clic, afin d'augmenter le potentiel de vos cours Moodle, d'animer vos sites, de présenter vos formations, de parler de l'université, de créer vos propres chaînes...

-

-Vous souhaitez guider la lecture de vos contenus postés sur Lille1.pod en permettant d'accéder directement à un endroit précis d'une vidéo ?

-

-Lille1.pod se veut aussi être un outil qui vous propose une aide dans votre pédagogie. Il vous est donc possible en toute autonomie d'enrichir vos vidéos par du texte, des images, des liens Web, des menus.

-
-
-

Wip3out, dénommé WipEout 3 aux États-Unis, est un jeu vidéo de course futuriste développé et édité par Psygnosis sur PlayStation. Il s'agit du troisième épisode de la série WipEout sur cette console, le quatrième toutes machines confondues, sorti le 31 août 1999 en Amérique du Nord, le 8 septembre 1999 en Europe et le 2 février 2000 au Japon. Le 14 juillet 2000, une réédition du jeu, WipEout 3: Special Edition, est sortie exclusivement en Europe. Le joueur contrôle un vaisseau armé à grande vitesse dans le but d'éliminer ses adversaires de la course.

-

Le développeur de Wip3out, Psygnosis, a embauché l'entreprise de design graphique The Designers Republic pour créer un jeu aux couleurs, aux menus et aux circuits simples, afin de créer un environnement futuriste mais « crédible », selon un membre du personnel de Psygnosis. C'est l'un des seuls jeux de la PlayStation à être en haute résolution, offrant un graphisme plus net. La bande-son de Wip3out est composée de musiques techno et électro, créées par Sasha, Orbital et The Chemical Brothers.

-
- - -

À sa sortie, le jeu est bien accueilli : les critiques ont salué les graphismes, la bande-son et les éléments de design minimalistes. Le niveau de difficulté élevé, le manque de nouveau contenu, de courses et de nouvelles options de jeu ont été considérés comme les principaux points noirs de ce jeu. Malgré une bonne critique, Wip3out n'est pas un succès commercial, avec seulement 340 000 exemplaires vendus à travers le monde.

-

Wip3out est le dernier jeu de la série WipEout à sortir sur PlayStation. L'opus suivant, WipEout Fusion, est sorti exclusivement sur PlayStation 2 en 2002.

-
- -
-
-
- -

Titre - - - marquer comme favorite - favorite - -

-
-
- -
- -
vidéo d'initiation à la méthode MRP conçue par l'équipe 1 pour le projet GIS4-PSI à Polytech'Lille. -
-
Tags
- un tag second tag
-
- - -
-
-
  • user Belkacem Ouldbouamama 12
  • -
  • Durée : 0:27:17
  • -
  • Vues : 2625
  • -
  • Type : Autres 514
  • -
  • Discliplines : Biologie 20 Sciences de la Terre, de l'Univers et de l'Environnement 17 Poils 3
  • -
  • Publiée le 24.12.2013
  • -
  • Contributeur(s) : DIAGNE/Ndèye Marème (responsable du suivi de l'exercice)
  • -
    -
    - - - - - -
    - -

    - - - - -

    -
    -
    -
    -
    - - -
    -
    - - -   - - copier
    -
    -
    -
    -
    - - -
    -
    - -
    -
    -
    -
    - -
    -
    - -
    -
    -
    -

    Connexion invité

    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    - -
    -
    -
    -
    -
    - - - - - - \ No newline at end of file diff --git a/pod_project/core/static/LILLE1/style/BackgroundTop.jpg b/pod_project/core/static/LILLE1/style/BackgroundTop.jpg deleted file mode 100755 index b4ee4da6..00000000 Binary files a/pod_project/core/static/LILLE1/style/BackgroundTop.jpg and /dev/null differ diff --git a/pod_project/core/static/LILLE1/style/Lille1Top.jpg b/pod_project/core/static/LILLE1/style/Lille1Top.jpg deleted file mode 100755 index 503e09e2..00000000 Binary files a/pod_project/core/static/LILLE1/style/Lille1Top.jpg and /dev/null differ diff --git a/pod_project/core/static/LILLE1/style/acces.css b/pod_project/core/static/LILLE1/style/acces.css deleted file mode 100755 index a0f1bbec..00000000 --- a/pod_project/core/static/LILLE1/style/acces.css +++ /dev/null @@ -1,7 +0,0 @@ -/* CSS crunched with Crunch - http://crunchapp.net/ */ -#acces{background:#000000 url(BackgroundTop.jpg) repeat-x;height:30px;width:100%;min-width:600px;color:#666;font-size:11px;line-height:1.27;}#acces DIV{width:100%;height:25px;} -#acces IMG{margin:0 0 0 20px;float:left;} -#acces P{margin:4px 0 0 5px;padding-top:3px;color:#FFFFFF;float:left;} -#acces INPUT{float:left;background:none;border:none;color:#FFFFFF;padding:4px 0 0 2px;font-weight:bold;cursor:pointer;}#acces INPUT:HOVER{color:#e5e5e5;} -#acces_direct{float:left;margin:5px 0 0 5px;font-size:9px;height:17px;width:240px;} -div#englobe_acces{width:520px;height:28px;float:right;margin-right:10px;} diff --git a/pod_project/core/static/LILLE1/style/acces.less b/pod_project/core/static/LILLE1/style/acces.less deleted file mode 100755 index 741f8794..00000000 --- a/pod_project/core/static/LILLE1/style/acces.less +++ /dev/null @@ -1,59 +0,0 @@ -/* CSS Document */ -#acces { - background:#000000 url(BackgroundTop.jpg) repeat-x; - height:30px; - width:100%; - min-width: 600px; - color:#666; - font-size:11px; - line-height: 1.27; - display:none; - @media @desktop { - display: block; - } - DIV { - width:100%; - height:25px; - } - IMG { - margin:0 0 0 20px; - float:left; - } - P { - margin: 4px 0 0 5px; - padding-top: 3px; - color:#FFFFFF; - float:left; - } - INPUT { - float:left; - background:none; - border:none; - color:#FFFFFF; - padding:4px 0 0 2px; - font-weight:bold; - cursor:pointer; - &:HOVER { - color:#e5e5e5; - } - } - label { - display: none; - @media @desktop { - display: block; - } - } -} -#acces_direct { - float:left; - margin:5px 0 0 5px; - font-size:9px; - height:17px; - width:240px; -} -div#englobe_acces { - width: 520px; - height: 28px; - float: right; - margin-right:10px; -} \ No newline at end of file diff --git a/pod_project/core/static/LILLE1/style/aside.less b/pod_project/core/static/LILLE1/style/aside.less deleted file mode 100755 index 652d5da4..00000000 --- a/pod_project/core/static/LILLE1/style/aside.less +++ /dev/null @@ -1,74 +0,0 @@ -aside { - @media @desktop { - float: right; - display: block; - width: 24%; - } - &.tip { - padding:20px; - .borderBox; - background: #f0f0f0; - - h3 { - margin: 0 0 10px 0; - } - } - &.sort-by { - padding:20px; - .borderBox; - background: #f0f0f0; - ul { - list-style: none; - .noSpace; - li { - display : none; - } - li.popular { - display : block; - - } - } - fieldset { - width: 24.6%; - margin: auto; - padding: 5px 0; - margin-bottom: 10px; - display: inline-block; - .borderBox; - vertical-align: top; - .borderBox; - .rem(11); - legend { - font-weight: bold; - .rem(12); - } - @media @desktop { - width: 100%; - display:block; - } - } - - select { - width: 100%; - } - .not-only-popular { - li { - display:block; - } - - } - } - - margin-bottom:20px; - #ownerbox { - padding: 4px; - .inline; - .nofocus; - .radius; - border: 1px solid #bbb; - font-family: @font; - width: 96%; - box-sizing: border-box; - margin: 0 2%; - } -} \ No newline at end of file diff --git a/pod_project/core/static/LILLE1/style/form.less b/pod_project/core/static/LILLE1/style/form.less deleted file mode 100755 index 629bbaa2..00000000 --- a/pod_project/core/static/LILLE1/style/form.less +++ /dev/null @@ -1,341 +0,0 @@ -.datetimeshortcuts { - .rem(14); - img { - vertical-align: text-bottom; - } - } -.hint { - margin-left: 27%; - margin-top: 5px; - margin-bottom: 15px; - @media @desktop { - margin:0; - margin-left: 5px; - cursor: pointer; - position: relative; - .inline; - &:before { - line-height: 1; - z-index:2004; - position:relative; - content: "?"; - color: #fff; - background: #0bf; - .radius(50%); - height: 16px; - width: 16px; - text-align: center; - font-weight: bold; - display: block; - .rem(14); - text-shadow: 0 1px 1px rgba(0,0,0,.4); - font-family: verdana; - } - .bullet { - z-index: 2005; - position: absolute; - .radius; - background: rgba(0,0,0,0.7); - left: 30px; - top: -20px; - width: 200px; - .rem(11); - padding: 10px; - color: #fff; - text-shadow: 0 1px 1px rgba(0,0,0,.4); - opacity: 0; - .tween (opacity); - visibility: hidden; - &:before { - content: ""; - position: absolute; - width: 0; - height: 0; - border-style: solid; - border-width: 10px 10px 10px 0; - border-color: transparent rgba(0,0,0,0.7) transparent transparent; - top: 17px; - left: -10px; - } - } - &:hover { - .bullet { - opacity: 1; - visibility: visible; - } - &:before { - background: @mediumdark; - } - } - } -} -.form { - #id_video { - padding: 5px; - } - .field { - .borderBox; - &.connect a { - .rem(15); - font-weight: bold; - } - &.buttons { - text-align:center; - } - ul.thumbPicker { - .inline; - .noSpace; - list-style: none; - li { - .inline; - border: 2px solid transparent; - cursor: pointer; - &.current { - border-color: @maincolor; - img { - filter: grayscale(0); - -webkit-filter: grayscale(0); - -o-filter: grayscale(0); - -moz-filter: grayscale(0); - } - } - img { - height: 64px; - width: auto; - display:block; - filter: grayscale(1); - -webkit-filter: grayscale(1); - -o-filter: grayscale(1); - -moz-filter: grayscale(1); - } - } - } - margin: 10px 0; - label { - width: 25%; - .inline; - text-align: right; - font-weight: bold; - margin-right: 5px; - .rem(12); - text-transform: uppercase; - } - input[type="text"], input[type="url"], input[type="password"], textarea, select, { - padding: 8px; - .inline; - .nofocus; - .radius; - border: 1px solid #bbb; - min-width: 380px; - font-family: @font; - } - textarea { - vertical-align: text-top; - } - input[type="checkbox"]{ - .inline; - } - - } - &.guest { - .field { - text-align:center; - } - label { - .hide; - } - i { - .rem(14); - } - span.icon { - .inline; - .radius(4px 0 0 4px); - color: #fff; - padding: 6px; - border: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255,255,255,0.2); - text-shadow: 0 1px 0 rgba(0,0,0,0.2); - .nofocus; - margin-bottom: 0; - .rem(14); - font-weight: normal; - line-height: 1.428571429; - text-align: center; - white-space: nowrap; - color:@dark; - background:@lightgrey; - } - input[type="text"], input[type="password"] { - .radius(0 4px 4px 0) !important; - margin-left: 0 !important; - } - .log { - text-align:center; - } - } - &.completion-user { - .field { - text-align:left; - float:none; - margin: 0 5px; - @media @desktop { - float:left; - text-align:center; - } - } - label { - .hide; - } - span { - .inline; - .radius(4px 0 0 4px); - color: #fff; - padding: 6px; - border: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255,255,255,0.2); - text-shadow: 0 1px 0 rgba(0,0,0,0.2); - .nofocus; - margin-bottom: 0; - .rem(14); - font-weight: normal; - line-height: 1.428571429; - text-align: center; - white-space: nowrap; - color:@dark; - background:@lightgrey; - i { - .rem(14); - } - } - input[type="text"],select { - .radius(0 4px 4px 0) !important; - margin-left: 0 !important; - min-width:88%; - @media @desktop { - min-width:150px; - } - } - select { - padding:7px; - } - .log { - text-align:center; - } - .add,.delete { - padding:7px; - .rem(20); - float: right; - @media @desktop { - float:left; - } - } - } -} -input[type="submit"]{ - .inputButton(@green); -} -input[name="action1"]{ - .inputButton(@green); -} -input[name="action2"],input[name="action3"]{ - .inputButton; -} - -.related-lookup { - /*padding: 4px 7px; - background: @maincolor; - .radius; - .linksIn(#fff,#000,none,none);*/ - .bigLink; - .inline !important; - margin: 0 5px !important; - &:before { - .fontA("\f002"); - } - img { - .hide; - } -} -#id_headband_thumbnail_img, #id_thumbnail_thumbnail_img, #id_image_thumbnail_img { - .inline; - .radius; -} -.jqEasyCounterMsg { - .inline; - width: auto !important; -} -#contributor, #track, #doc { - .field { - .borderBox; - margin: 10px 0; - label { - width: 25%; - .inline; - text-align: right; - font-weight: bold; - margin-right: 5px; - .rem(12); - text-transform: uppercase; - } - input[type="text"], input[type="url"], input[type="email"], input[type="password"], textarea, select, { - padding: 8px; - .inline; - .nofocus; - .radius; - border: 1px solid #bbb; - min-width: 380px; - font-family: @font; - } - } -} -#connCas { - .bigLink(@green,5px,12,inline-block); -} -#connInv { - .bigLink(@complementary,5px,12,inline-block); -} -#chapter_form { - .inline; - width: 100%; - width:83%; - #chapters { - display:block; - #formset { - min-height: 280px; - width: 100%; - overflow-x: hidden; - overflow-y: auto; - display: block; - position: relative; - .data-formset-add { - position: absolute; - } - .data-formset-body { - position: absolute; - .form-container { - float:left; - .borderBox; - border:1px solid #ccc; - margin: 5px 0px; - padding: 2px; - .field { - .inline(top); - width:49%; - } - } - } - - - } - } - -} -.prevChapter,.nextChapter { - .inline; - text-align: center; - width: 8%; - .borderBox; - span { - .hide; - } - } \ No newline at end of file diff --git a/pod_project/core/static/LILLE1/style/header.less b/pod_project/core/static/LILLE1/style/header.less deleted file mode 100755 index e7e6f9c8..00000000 --- a/pod_project/core/static/LILLE1/style/header.less +++ /dev/null @@ -1,403 +0,0 @@ -.headerWrapper header { - background: #222 url("binding_dark.png"); - .logo { - display:none; - text-decoration: none; - h1 { - display: none; - } - @media @desktop { - .inline; - float:left; - } - } - /*width: 100%; - max-width: @screenWidth; - min-width: 640px; - margin: auto;*/ - padding: 10px; - position: relative; - .borderBox; - .user-area { - .inline; - .radius; - /*position: absolute; - right: 10px; - top: 17px;*/ - float:right; - .button-not-logged { - .inline !important; - .bigLink; - i { - .rem(14); - } - } - .button-logged { - .inline; - position: relative; - .logged-first { - .bigLink(@complementary,5px,12,block); - .radius(4px 0 0 4px) !important; - border-right: 1px solid lighten(@complementary,5%) !important; //000bfff - float:left; - i { - .rem(14); - } - } - .dropdown-menu { - position:absolute; - background: #fff; - z-index: 2023; - margin:3px 0; - border:1px solid @lightgrey; - padding:4px 0; - top: 100%; - right: 0; - .shadow(1px, 1px,@black2); - .radius; - li { - list-style: none; - i { - padding-right: 4px; - } - a { - display:block; - &:link, &:visited { - color: @dark; - white-space:nowrap; - text-decoration: none; - padding: 4px 20px; - } - &:hover, &:active { - color: #fff; - text-decoration: none; - background:@complementary; - } - } - &.item-separator{ - border-bottom:1px solid @lightgrey; - padding-top: 5px; - margin-bottom: 5px; - } - } - } - .logged-last { - .bigLink(@complementary,5px,12,block); - .radius(0 4px 4px 0) !important; - float:left; - border-left: 1px solid darken(@complementary,5%) !important; - } - } - .button-lang { - .inline; - margin-right:10px; - .radius(4px); - padding: 2px; - border: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2); - text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2); - outline: none; - margin-bottom: 0; - .rem(12); - font-weight: normal; - line-height: 1.428571429; - text-align: center; - cursor: pointer; - white-space: nowrap; - color: #fff; - background: @complementary; - i,form { - .inline; - } - select { - .radius; - } - } - } -} -.navWrapper { - //.gradient(#333333,#141414,0%,100%); -} -nav { - width:100%; - padding:10px; - .borderBox; - .gradient(@maincolor,@analogue,0%,100%); - //background: darken(@maincolor, 20%); - position: relative; - z-index:2020; - .mobile-menu { - .inline; - a.gotoHome { - .bigLink(@complementary,5px,12,inline-block); //(@bg:@complementary,@padding:5px,@rem:12,@display:block) - .inline; - } - label { - display:none; - } - select { - padding: 3px; - .inline; - .nofocus; - border: 1px solid #bbb; - .radius; - //width:200px; - } - @media @desktop { - display: none; - } - } - ul#main-menu { - padding: 6px 0; - display:none; - margin: 0; - float: left; - width: 100%; - box-sizing: border-box; - height: 25px; - @media @desktop { - width: 50%; - display: table; //block - } - li { //entrée principale - list-style: none; - float: none; - display: table-cell; //block - box-sizing: border-box; - text-align: center; - font-weight: bold; - vertical-align: middle; - a { // liens en-tete - border-right: 2px solid @dark; - display: block; - text-transform: uppercase; - .rem(14); - .linksIn(@dark,@complementary,none); - } - ul { //liens sub - display: none; - position: absolute; - padding: 10px 0 0 0; - margin: 0; - min-width: 200px; - li { //items - & > a { - color: @dark !important; - .rem(12); - } - &:hover > a { - color: @complementary !important; - background: @mediumdark !important; - } - border: none; - clear:both; - width: 100%; - //padding: 0px 4px; - .borderBox; - background: #333; - text-align: left; - display: block; //++ - position: relative; - /*border-top: 1px solid @light; - border-left: 1px solid @light; - border-right: 1px solid @dark; - border-bottom: 1px solid @dark;*/ - .rem(11); - font-weight: normal; - a { - border: none; - border-left: 4px solid @mediumdark; - white-space: nowrap; - background: @superlight; - display: block; - padding: 8px 20px 8px 4px; - i { - position: absolute; - right: 4px; - } - } - ul { - .shadow; - position: absolute; - left: 100%; - padding-top: 0; - top: 0px; - display: none; - //border-right: 1px solid @light; - } - &:hover ul { - @media @desktop { - display: block; - } - display: none; - } - } - } - &:hover > ul { - display: block; - - } - } - } - ul#main-menu .social { - a { - .inline; - border:none; - color: #fff !important; - .radius; - background: #fff; - width: 24px; - height: 24px; - } - i { - .rem(16); - } - span { - .hide; - } - } - .addSearch { - padding: 6px 0; - .inline; - float:right; - .borderBox; - div#searchEngine { - .borderBox; - .inline; - //display:block; - .noSpace; - .radius; - height:26px; - background: #fff; - text-align: left; - float: left; - //width:62%; - margin-right:10px; - position: relative; - .button { - cursor: pointer; - .inline; - margin:0; - padding: 0px; - border: none; - background: #fff; - .radius(0); - width:24px; - height:20px; - .borderBox; - border-left: 1px dotted #333; - position: absolute; - top: 3px; - right: 2px; - &:focus { - .nofocus; - } - &:hover { - background: inherit; - color: lighten(@complementary,10%); - } - i { - color: @complementary !important; - } - &:active { - box-shadow: none; - i { - color: #333 !important; - } - } - span { - display: none; - } - } - .textfield { - .inline; - //width: 85%; - margin: 3px 30px 3px 3px; - border: none; - .borderBox; - line-height:1.2; - .rem(13); - &:focus { - .nofocus; - } - } - /*.results { - background: #fff; - position: absolute; - width: 95%; - text-align: left; - padding: 4px; - .radius; - .shadow(2px,5px,#555); - margin-top:5px; - & > span { - color: #555; - font-style: italic; - } - h5 { - margin: 3px 0; - background: @superlight; - } - ul { - list-style: none; - padding: 0 0 0 5px; - .links(@analogue,@mediumdark,none,none); - } - }*/ - } - .addVideo { - .bigLink (@complementary,2px,14,inline-block); - //width:35%; - float: right; - .borderBox; - span { - display:inline-block; - } - } - } -} -i.fa-facebook { - color: #3B5998; - } -i.fa-google-plus { - color:#DF5138; -} -i.fa-twitter { - color:#00D1FE; -} -.list-all { - .links (@complementary,#333,none,none); - font-weight:bold; - display:block; - white-space: nowrap; - margin:8px 0; - .rem(14); -} -.floatingMenus-mobile { - .global; - padding: 0 10px; - background: #fff; - display:block; - @media @desktop { - display:none; - } - .social-mobile { - .inline; - width:33%; - span { - - display:none; - } - } - select { - padding: 8px; - .inline; - .nofocus; - border: 1px solid #bbb; - .radius; - width:32%; - } - label { - display:none; - } -} \ No newline at end of file diff --git a/pod_project/core/static/LILLE1/style/mixins.less b/pod_project/core/static/LILLE1/style/mixins.less deleted file mode 100755 index 23e74d0b..00000000 --- a/pod_project/core/static/LILLE1/style/mixins.less +++ /dev/null @@ -1,282 +0,0 @@ -a:link, a:visited { - color: @complementary; - text-decoration:none; -} -a:hover, a:active { - color: @analogue; - text-decoration:none; -} -.noSpace(){ - padding: 0; - margin: 0; -} -.borderBox(){ - -moz-box-sizing:border-box; - box-sizing:border-box; -} -.global { - width: 100%; - max-width: @screenWidth; - min-width: 640px; - margin: auto; - padding: 10px; - .borderBox; - @media @desktop { - width: 90%; //90 - } -} -.global-noSpace:extend(.global) { - padding: 0; -} -.inline(@vert:middle) { - display: inline-block; - vertical-align: @vert; -} -.nofocus() { - outline: none; -} -.radius(@val: 4px) { - border-radius: @val; - -moz-border-radius: @val; - -ms-border-radius: @val; - -webkit-border-radius: @val; -} -.cesure(){ - -webkit-hyphens: auto; - -moz-hyphens: auto; - -ms-hyphens: auto; - -o-hyphens: auto; - hyphens: auto; -} -.tween (@prop,@time: 0.5s ,@ease: ease-out) { - transition: @prop @time @ease; - -webkit-transition: @prop @time @ease; - -moz-transition: @prop @time @ease; -} -.shadow (@offset:1px,@radius:1px,@tint:@mediumdark) { - -webkit-box-shadow: @offset @offset @radius @tint; - -moz-box-shadow: @offset @offset @radius @tint; - box-shadow: @offset @offset @radius @tint; -} -.txtshadow (@offset: 0,@radius: 5px,@tint: #333) { - -webkit-text-shadow: @offset @offset @radius @tint; - -moz-text-shadow: @offset @offset @radius @tint; - text-shadow: @offset @offset @radius @tint; -} -.links (@link,@hover,@deco: underline,@decoh: none) { - a:link, a:visited { - color: @link; - text-decoration:@deco; - } - a:hover, a:active { - color: @hover; - text-decoration:@decoh; - } -} -.linksIn (@link,@hover,@deco: underline,@decoh: none,@bg:none) { - &:link, &:visited { - color: @link; - text-decoration:@deco; - } - &:hover, &:active { - color: @hover; - text-decoration:@decoh; - background-color: @bg; - } -} -.bigLink (@bg:@complementary,@padding:5px,@rem:12,@display:block) { - &:link, &:visited { - display: @display; - text-decoration: none; - .radius; - color: #fff; - padding: @padding; - border: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255,255,255,0.2); - text-shadow: 0 1px 0 rgba(0,0,0,0.2); - .nofocus; - margin-bottom: 0; - .rem(@rem); - font-weight: normal; - line-height: 1.428571429; - text-align: center; - cursor: pointer; - white-space: nowrap; - color:#fff; - background:@bg; - } - &:hover { - background:lighten(@bg,10%); - } - &:active { - -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,0.125); - box-shadow: inset 0 3px 5px rgba(0,0,0,0.125); - } -} -button, .log { - border: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255,255,255,0.2); - text-shadow: 0 1px 0 rgba(0,0,0,0.2); - .nofocus; - .inline; - padding: 6px 12px; - margin-bottom: 0; - .rem(14); - font-weight: normal; - line-height: 1.428571429; - text-align: center; - cursor: pointer; - .radius; - white-space: nowrap; - color:#fff; - background: @complementary; - &:hover { - background:lighten(@complementary, 10%); - } - &:active { - -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,0.125); - box-shadow: inset 0 3px 5px rgba(0,0,0,0.125); - } - * { - .inline; - } - i { - color:#fff; - } - span { - } - &.ok { - background: @green; - &:hover{ - background: lighten(@green, 10%); - } - } - &.cancel { - background: @red; - &:hover{ - background: lighten(@red,10%); - } - } - &.gotoHome { - background: @complementary; - &:hover{ - background:lighten(@complementary,10%); - } - } -} -.inputButton(@col:@complementary) { - border: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255,255,255,0.2); - text-shadow: 0 1px 0 rgba(0,0,0,0.2); - .nofocus; - .inline; - padding: 6px 12px; - margin-bottom: 0; - .rem(14); - font-weight: normal; - - line-height: 1.428571429; - text-align: center; - cursor: pointer; - .radius; - white-space: nowrap; - color:#fff; - background:@col; - &:hover { - background:lighten(@col, 10%); - } - &:active { - -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,0.125); - box-shadow: inset 0 3px 5px rgba(0,0,0,0.125); - } - * { - .inline; - } - i { - color:#fff; - } - span { - } -} -.gradient (@first, @last, @start: 0%, @stop: 100%) { - background: @first; - background: -moz-linear-gradient(top, @first @start, @last @stop); - background: -webkit-gradient(linear, left top, left bottom, color-stop(@start,@first), color-stop(@stop,@last)); - background: -webkit-linear-gradient(top, @first @start,@last @stop); - background: -o-linear-gradient(top, @first @start,@last @stop); - background: -ms-linear-gradient(top, @first @start,@last @stop); - background: linear-gradient(to bottom, @first @start,@last @stop); - filter: ~"progid:DXImageTransform.Microsoft.gradient(startColorstr='@{first}',endColorstr='@{last}',GradientType=0)"; -} -.rem(@size, @weight: normal){ - font-size: ~"@{size}px"; - @rem: (@size/@main-font-size); - font-size: ~"@{rem}rem"; - font-weight: @weight; -} -.grid-2 > li { - width: floor((100%/2)-1); - .inline; - vertical-align: top; -} -.grid-3 > li { - width: floor((100%/3)-1); - .inline; - vertical-align: top; -} -.grid-4 > li { - width: floor((100%/4)-1); - .inline; - vertical-align: top; -} -.grid-5 > li { - width: floor((100%/5)-1); - .inline; - vertical-align: top; -} -li { - list-style: none; -} -fieldset { - border:1px dashed #ccc !important; -} -legend { - font-weight:bold; - .rem(12); - padding: 0 6px; - margin: 0 8px; -} -.fontA(@char) { - font-family: FontAwesome; - font-style: normal; - font-weight: normal; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - content: @char; -} -input.error, select.error { - /*input, select { - .shadow(0,10px,red); - }*/ - .shadow(0,10px,red); - -} -label.error { - color: red; - font-weight: normal !important; - text-align: left !important; - padding-left: 8px; - text-transform: none !important; - font-style: italic !important; -} -.noshadow () { - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -.notxtshadow () { - -webkit-text-shadow: none; - -moz-text-shadow: none; - text-shadow: none; -} \ No newline at end of file diff --git a/pod_project/core/static/LILLE1/style/player.less b/pod_project/core/static/LILLE1/style/player.less deleted file mode 100755 index b596563e..00000000 --- a/pod_project/core/static/LILLE1/style/player.less +++ /dev/null @@ -1,201 +0,0 @@ -#global_video { - #player { - display: block; - width: 100%; - background: #000; - padding-bottom: 0 !important; - //height: 0; - &.simplevideo { - width: 90% !important; - margin: auto; - #player_video[style] { - width: 100% !important; - height: auto !important; - #player_video_html5_api { - position: static !important; - } - } - } - &.richvideo { - } - } - #info_video { - header { - h2 { - } - } - .data { - width:69%; - } - .meta { - h3 { - margin:0; - } - .views { - color: @complementary; - } - img { - .inline; - width: 24px; - height: 24px; - .radius; - } - span.fullname { - .inline; - } - border-left: 5px solid #333; - .borderBox; - padding-left: 15px; - width: 30%; - float: right; - ul { - .noSpace; - list-style: none; - li { - margin:4px 0; - } - } - ul.downloads { - margin: 15px 0; - li.download-file { - a { - .bigLink(); - } - } - } - } - } -} -#preview { - position: absolute; - height: 64px; - width: 86px; - border:1px solid black; - margin:0; - padding:0; -} -#preview img{ - -} -/* Don't show hover effects on title */ -ul li.vjs-menu-title.vjs-res-menu-title:hover, ul li.vjs-menu-title.vjs-disp-menu-title:hover { - cursor: default; - background-color: transparent; - color: #CCC; - - -moz-box-shadow: none; - -webkit-box-shadow: none; - box-shadow: none; -} -//VJS////////////////////////////////////////////////////////////////////////////////////////////////////////// -.vjs-chapbar { - color: red; - top: -1em; - height: 100%; - position: relative; - background: rgba(100,100,100,.5); -} -.vjs-chapbar-holder { - height:100%; -} -.vjs-chapbar-chap { - height: 100%; - float: left; - width: 100%; - left: 0; - right: 0; - position: absolute; - background-color: #ffe800; - background: #ffe800; - background: -moz-linear-gradient(top,#ffe800,#a69700); - background: -webkit-gradient(linear,0% 0,0% 100%,from(#ffe800),to(#a69700)); - background: -webkit-linear-gradient(top,#ffe800,#a69700); - background: -o-linear-gradient(top,#ffe800,#a69700); - background: -ms-linear-gradient(top,#ffe800,#a69700); - background: linear-gradient(top,#ffe800,#a69700); - opacity: .8; -} -.video-js .vjs-slide { - position: absolute; - top: 0; - background-color:#fff; - overflow-y:auto; - /*height: 80%;*/ -} -.video-js[style] { - display: inline-block; - width:100% !important; -} -.video-js .vjs-title { - position: absolute; - top: 0; - left:10%; - background-color:#ccc; - height: 10%; - width: 80%; - opacity: .6; - text-align:center; - font-size: 3em; - line-height: 1em; - color: darkblue; - z-index:1000; -} -.video-js .vjs-slide > * { - width: 100%; - position: absolute; - left: 50%; - top: 50%; - -webkit-transform: translate(-50%, -50%); - -o-transform: translate(-50%, -50%); - -moz-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - font-size: 1.2em; - color:#000; -} -.video-js .vjs-slide > article { - height:100%; - width: 100%; - background-color:#fff; - overflow:auto; -} -.video-js .vjs-slide > article > div, .video-js .vjs-slide > article > object { - width:99%; - height:99%; -} -.video-js .vjs-slide > article > img, .video-js .vjs-slide > article > div > iframe { - vertical-align:middle; - position: absolute; - left: 50%; - top: 50%; - -webkit-transform: translate(-50%, -50%); - -o-transform: translate(-50%, -50%); - -moz-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); -} -.video-js .vjs-slide > article > img { - max-width:99%; - max-height:99%; -} -.vjs-default-skin .vjs-big-play-button { - top: 30% !important; - width: 100% !important; - height: 6em !important; - background: none !important; - border: none !important; - .noshadow !important; - &:hover { - .noshadow !important; - &:before { - color: @complementary !important; - } - } - &:before { - .fontA("\f144") !important; - font-size: 8em !important; - .txtshadow(3px) !important; - color: @smoke !important; - - } -} \ No newline at end of file diff --git a/pod_project/core/static/LILLE1/style/player_logo.png b/pod_project/core/static/LILLE1/style/player_logo.png deleted file mode 100755 index 6bfdd8e0..00000000 Binary files a/pod_project/core/static/LILLE1/style/player_logo.png and /dev/null differ diff --git a/pod_project/core/static/LILLE1/style/pod.css b/pod_project/core/static/LILLE1/style/pod.css deleted file mode 100755 index 6538ed54..00000000 --- a/pod_project/core/static/LILLE1/style/pod.css +++ /dev/null @@ -1,2 +0,0 @@ -/* CSS crunched with Crunch - http://crunchapp.net/ */ -@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700);@charset "utf-8";#acces{background:#000 url(BackgroundTop.jpg) repeat-x;height:30px;width:100%;min-width:600px;color:#666;font-size:11px;line-height:1.27;display:none}@media screen and (min-width: 1025px){#acces{display:block}}#acces DIV{width:100%;height:25px}#acces IMG{margin:0 0 0 20px;float:left}#acces P{margin:4px 0 0 5px;padding-top:3px;color:#FFFFFF;float:left}#acces INPUT{float:left;background:none;border:none;color:#FFFFFF;padding:4px 0 0 2px;font-weight:bold;cursor:pointer}#acces INPUT:HOVER{color:#e5e5e5}#acces label{display:none}@media screen and (min-width: 1025px){#acces label{display:block}}#acces_direct{float:left;margin:5px 0 0 5px;font-size:9px;height:17px;width:240px}div#englobe_acces{width:520px;height:28px;float:right;margin-right:10px}#acces{display:none !important}a:link,a:visited{color:#3f9ec2;text-decoration:none}a:hover,a:active{color:#ee7d19;text-decoration:none}.global,.global-noSpace{width:100%;max-width:1200px;min-width:640px;margin:auto;padding:10px;-moz-box-sizing:border-box;box-sizing:border-box}@media screen and (min-width: 1025px){.global,.global-noSpace{width:90%}}.global-noSpace{padding:0}button,.log{border:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.2);text-shadow:0 1px 0 rgba(0,0,0,0.2);outline:none;display:inline-block;vertical-align:middle;padding:6px 12px;margin-bottom:0;font-size:14px;font-size:1.4rem;font-weight:normal;line-height:1.428571429;text-align:center;cursor:pointer;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;white-space:nowrap;color:#fff;background:#3f9ec2}button:hover,.log:hover{background:#66b2ce}button:active,.log:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}button *,.log *{display:inline-block;vertical-align:middle}button i,.log i{color:#fff}button.ok,.log.ok{background:#437828}button.ok:hover,.log.ok:hover{background:#589e35}button.cancel,.log.cancel{background:#9d201b}button.cancel:hover,.log.cancel:hover{background:#c92922}button.gotoHome,.log.gotoHome{background:#3f9ec2}button.gotoHome:hover,.log.gotoHome:hover{background:#66b2ce}.grid-2>li{width:49%;display:inline-block;vertical-align:middle;vertical-align:top}.grid-3>li{width:32%;display:inline-block;vertical-align:middle;vertical-align:top}.grid-4>li{width:24%;display:inline-block;vertical-align:middle;vertical-align:top}.grid-5>li{width:19%;display:inline-block;vertical-align:middle;vertical-align:top}li{list-style:none}fieldset{border:1px dashed #ccc !important}legend{font-weight:bold;font-size:12px;font-size:1.2rem;font-weight:normal;padding:0 6px;margin:0 8px}input.error,select.error{-webkit-box-shadow:0 0 10px #f00;-moz-box-shadow:0 0 10px #f00;box-shadow:0 0 10px #f00}label.error{color:red;font-weight:normal !important;text-align:left !important;padding-left:8px;text-transform:none !important;font-style:italic !important}.fa-6x{font-size:6em}html{font-size:62.5%}::selection{color:#ddd;background:#3f9ec2}.clearfix:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.clearfix{display:block}html[xmlns] .clearfix{display:block}* html .clearfix{height:1%}body{line-height:1.2;font-family:'Open Sans',sans-serif;font-size:12px;font-size:1.2rem;font-weight:normal;background:#222 url("binding_dark.png");padding:0;margin:0;overflow-y:scroll}.to-top{position:fixed;bottom:20px;right:20px;background:#f8af19;padding:5px;font-size:10px;font-size:1rem;font-weight:normal;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;text-align:center;width:45px;text-decoration:none;overflow:hidden;display:none;height:55px}.to-top:link,.to-top:visited{color:#fff;text-decoration:none}.to-top:hover,.to-top:active{color:#333;text-decoration:none;background-color:none}section#page{width:100%}.headerWrapper header{background:#222 url("binding_dark.png");padding:10px;position:relative;-moz-box-sizing:border-box;box-sizing:border-box}.headerWrapper header .logo{display:none;text-decoration:none}.headerWrapper header .logo h1{display:none}@media screen and (min-width: 1025px){.headerWrapper header .logo{display:inline-block;vertical-align:middle;float:left}}.headerWrapper header .user-area{display:inline-block;vertical-align:middle;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;float:right}.headerWrapper header .user-area .button-not-logged{display:inline-block !important;vertical-align:middle !important}.headerWrapper header .user-area .button-not-logged:link,.headerWrapper header .user-area .button-not-logged:visited{display:block;text-decoration:none;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;padding:5px;border:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.2);text-shadow:0 1px 0 rgba(0,0,0,0.2);outline:none;margin-bottom:0;font-size:12px;font-size:1.2rem;font-weight:normal;line-height:1.428571429;text-align:center;cursor:pointer;white-space:nowrap;color:#fff;background:#3f9ec2}.headerWrapper header .user-area .button-not-logged:hover{background:#66b2ce}.headerWrapper header .user-area .button-not-logged:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.headerWrapper header .user-area .button-not-logged i{font-size:14px;font-size:1.4rem;font-weight:normal}.headerWrapper header .user-area .button-logged{display:inline-block;vertical-align:middle;position:relative}.headerWrapper header .user-area .button-logged .logged-first{border-radius:4px 0 0 4px !important;-moz-border-radius:4px 0 0 4px !important;-ms-border-radius:4px 0 0 4px !important;-webkit-border-radius:4px 0 0 4px !important;border-right:1px solid #52a8c8 !important;float:left}.headerWrapper header .user-area .button-logged .logged-first:link,.headerWrapper header .user-area .button-logged .logged-first:visited{display:block;text-decoration:none;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;padding:5px;border:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.2);text-shadow:0 1px 0 rgba(0,0,0,0.2);outline:none;margin-bottom:0;font-size:12px;font-size:1.2rem;font-weight:normal;line-height:1.428571429;text-align:center;cursor:pointer;white-space:nowrap;color:#fff;background:#3f9ec2}.headerWrapper header .user-area .button-logged .logged-first:hover{background:#66b2ce}.headerWrapper header .user-area .button-logged .logged-first:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.headerWrapper header .user-area .button-logged .logged-first i{font-size:14px;font-size:1.4rem;font-weight:normal}.headerWrapper header .user-area .button-logged .dropdown-menu{position:absolute;background:#fff;z-index:2023;margin:3px 0;border:1px solid #ddd;padding:4px 0;top:100%;right:0;-webkit-box-shadow:1px 1px 1px #141414;-moz-box-shadow:1px 1px 1px #141414;box-shadow:1px 1px 1px #141414;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px}.headerWrapper header .user-area .button-logged .dropdown-menu li{list-style:none}.headerWrapper header .user-area .button-logged .dropdown-menu li i{padding-right:4px}.headerWrapper header .user-area .button-logged .dropdown-menu li a{display:block}.headerWrapper header .user-area .button-logged .dropdown-menu li a:link,.headerWrapper header .user-area .button-logged .dropdown-menu li a:visited{color:#141414;white-space:nowrap;text-decoration:none;padding:4px 20px}.headerWrapper header .user-area .button-logged .dropdown-menu li a:hover,.headerWrapper header .user-area .button-logged .dropdown-menu li a:active{color:#fff;text-decoration:none;background:#3f9ec2}.headerWrapper header .user-area .button-logged .dropdown-menu li.item-separator{border-bottom:1px solid #ddd;padding-top:5px;margin-bottom:5px}.headerWrapper header .user-area .button-logged .logged-last{border-radius:0 4px 4px 0 !important;-moz-border-radius:0 4px 4px 0 !important;-ms-border-radius:0 4px 4px 0 !important;-webkit-border-radius:0 4px 4px 0 !important;float:left;border-left:1px solid #388fb0 !important}.headerWrapper header .user-area .button-logged .logged-last:link,.headerWrapper header .user-area .button-logged .logged-last:visited{display:block;text-decoration:none;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;padding:5px;border:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.2);text-shadow:0 1px 0 rgba(0,0,0,0.2);outline:none;margin-bottom:0;font-size:12px;font-size:1.2rem;font-weight:normal;line-height:1.428571429;text-align:center;cursor:pointer;white-space:nowrap;color:#fff;background:#3f9ec2}.headerWrapper header .user-area .button-logged .logged-last:hover{background:#66b2ce}.headerWrapper header .user-area .button-logged .logged-last:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.headerWrapper header .user-area .button-lang{display:inline-block;vertical-align:middle;margin-right:10px;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;padding:2px;border:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.2);text-shadow:0 1px 0 rgba(0,0,0,0.2);outline:none;margin-bottom:0;font-size:12px;font-size:1.2rem;font-weight:normal;line-height:1.428571429;text-align:center;cursor:pointer;white-space:nowrap;color:#fff;background:#3f9ec2}.headerWrapper header .user-area .button-lang i,.headerWrapper header .user-area .button-lang form{display:inline-block;vertical-align:middle}.headerWrapper header .user-area .button-lang select{border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px}nav{width:100%;padding:10px;-moz-box-sizing:border-box;box-sizing:border-box;background:#f8af19;background:-moz-linear-gradient(top, #f8af19 0, #ee7d19 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f8af19), color-stop(100%, #ee7d19));background:-webkit-linear-gradient(top, #f8af19 0, #ee7d19 100%);background:-o-linear-gradient(top, #f8af19 0, #ee7d19 100%);background:-ms-linear-gradient(top, #f8af19 0, #ee7d19 100%);background:linear-gradient(to bottom, #f8af19 0, #ee7d19 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8af19',endColorstr='#ee7d19',GradientType=0);position:relative;z-index:2020}nav .mobile-menu{display:inline-block;vertical-align:middle}nav .mobile-menu a.gotoHome{display:inline-block;vertical-align:middle}nav .mobile-menu a.gotoHome:link,nav .mobile-menu a.gotoHome:visited{display:inline-block;text-decoration:none;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;padding:5px;border:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.2);text-shadow:0 1px 0 rgba(0,0,0,0.2);outline:none;margin-bottom:0;font-size:12px;font-size:1.2rem;font-weight:normal;line-height:1.428571429;text-align:center;cursor:pointer;white-space:nowrap;color:#fff;background:#3f9ec2}nav .mobile-menu a.gotoHome:hover{background:#66b2ce}nav .mobile-menu a.gotoHome:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}nav .mobile-menu label{display:none}nav .mobile-menu select{padding:3px;display:inline-block;vertical-align:middle;outline:none;border:1px solid #bbb;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px}@media screen and (min-width: 1025px){nav .mobile-menu{display:none}}nav ul#main-menu{padding:6px 0;display:none;margin:0;float:left;width:100%;box-sizing:border-box;height:25px}@media screen and (min-width: 1025px){nav ul#main-menu{width:50%;display:table}}nav ul#main-menu li{list-style:none;float:none;display:table-cell;box-sizing:border-box;text-align:center;font-weight:bold;vertical-align:middle}nav ul#main-menu li a{border-right:2px solid #141414;display:block;text-transform:uppercase;font-size:14px;font-size:1.4rem;font-weight:normal}nav ul#main-menu li a:link,nav ul#main-menu li a:visited{color:#141414;text-decoration:none}nav ul#main-menu li a:hover,nav ul#main-menu li a:active{color:#3f9ec2;text-decoration:none;background-color:none}nav ul#main-menu li ul{display:none;position:absolute;padding:10px 0 0 0;margin:0;min-width:200px}nav ul#main-menu li ul li{border:none;clear:both;width:100%;-moz-box-sizing:border-box;box-sizing:border-box;background:#333;text-align:left;display:block;position:relative;font-size:11px;font-size:1.1rem;font-weight:normal}nav ul#main-menu li ul li>a{color:#141414 !important;font-size:12px;font-size:1.2rem;font-weight:normal}nav ul#main-menu li ul li:hover>a{color:#3f9ec2 !important;background:#333 !important}nav ul#main-menu li ul li a{border:none;border-left:4px solid #333;white-space:nowrap;background:#f1f1f1;display:block;padding:8px 20px 8px 4px}nav ul#main-menu li ul li a i{position:absolute;right:4px}nav ul#main-menu li ul li ul{-webkit-box-shadow:1px 1px 1px #333;-moz-box-shadow:1px 1px 1px #333;box-shadow:1px 1px 1px #333;position:absolute;left:100%;padding-top:0;top:0px;display:none}nav ul#main-menu li ul li:hover ul{display:none}@media screen and (min-width: 1025px){nav ul#main-menu li ul li:hover ul{display:block}}nav ul#main-menu li:hover>ul{display:block}nav ul#main-menu .social a{display:inline-block;vertical-align:middle;border:none;color:#fff !important;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;background:#fff;width:24px;height:24px}nav ul#main-menu .social i{font-size:16px;font-size:1.6rem;font-weight:normal}nav ul#main-menu .social span{display:none !important}nav .addSearch{padding:6px 0;display:inline-block;vertical-align:middle;float:right;-moz-box-sizing:border-box;box-sizing:border-box}nav .addSearch div#searchEngine{-moz-box-sizing:border-box;box-sizing:border-box;display:inline-block;vertical-align:middle;padding:0;margin:0;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;height:26px;background:#fff;text-align:left;float:left;margin-right:10px;position:relative}nav .addSearch div#searchEngine .button{cursor:pointer;display:inline-block;vertical-align:middle;margin:0;padding:0px;border:none;background:#fff;border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-webkit-border-radius:0;width:24px;height:20px;-moz-box-sizing:border-box;box-sizing:border-box;border-left:1px dotted #333;position:absolute;top:3px;right:2px}nav .addSearch div#searchEngine .button:focus{outline:none}nav .addSearch div#searchEngine .button:hover{background:inherit;color:#66b2ce}nav .addSearch div#searchEngine .button i{color:#3f9ec2 !important}nav .addSearch div#searchEngine .button:active{box-shadow:none}nav .addSearch div#searchEngine .button:active i{color:#333 !important}nav .addSearch div#searchEngine .button span{display:none}nav .addSearch div#searchEngine .textfield{display:inline-block;vertical-align:middle;margin:3px 30px 3px 3px;border:none;-moz-box-sizing:border-box;box-sizing:border-box;line-height:1.2;font-size:13px;font-size:1.3rem;font-weight:normal}nav .addSearch div#searchEngine .textfield:focus{outline:none}nav .addSearch .addVideo{float:right;-moz-box-sizing:border-box;box-sizing:border-box}nav .addSearch .addVideo:link,nav .addSearch .addVideo:visited{display:inline-block;text-decoration:none;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;padding:2px;border:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.2);text-shadow:0 1px 0 rgba(0,0,0,0.2);outline:none;margin-bottom:0;font-size:14px;font-size:1.4rem;font-weight:normal;line-height:1.428571429;text-align:center;cursor:pointer;white-space:nowrap;color:#fff;background:#3f9ec2}nav .addSearch .addVideo:hover{background:#66b2ce}nav .addSearch .addVideo:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}nav .addSearch .addVideo span{display:inline-block}i.fa-facebook{color:#3B5998}i.fa-google-plus{color:#DF5138}i.fa-twitter{color:#00D1FE}.list-all{font-weight:bold;display:block;white-space:nowrap;margin:8px 0;font-size:14px;font-size:1.4rem;font-weight:normal}.list-all a:link,.list-all a:visited{color:#3f9ec2;text-decoration:none}.list-all a:hover,.list-all a:active{color:#333;text-decoration:none}.floatingMenus-mobile{width:100%;max-width:1200px;min-width:640px;margin:auto;padding:10px;-moz-box-sizing:border-box;box-sizing:border-box;padding:0 10px;background:#fff;display:block}@media screen and (min-width: 1025px){.floatingMenus-mobile{width:90%}}@media screen and (min-width: 1025px){.floatingMenus-mobile{display:none}}.floatingMenus-mobile .social-mobile{display:inline-block;vertical-align:middle;width:33%}.floatingMenus-mobile .social-mobile span{display:none}.floatingMenus-mobile select{padding:8px;display:inline-block;vertical-align:middle;outline:none;border:1px solid #bbb;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;width:32%}.floatingMenus-mobile label{display:none}article{background:#fff;position:relative}article header{width:100%;overflow:hidden;padding:0;margin-bottom:10px}article header h2{margin:0.3em 0;float:left}article header .stats{clear:both;background:#f1f1f1;padding:0;margin:0;list-style:none}article header .stats li{display:inline-block;vertical-align:middle;float:left;text-align:center;padding:5px 5px 5px 2px;margin:5px 5px 5px 0;min-width:64px;border-right:1px solid #ccc;font-size:16px;font-size:1.6rem;font-weight:normal;font-weight:bold}article header .stats li span{display:block;font-size:10px;font-size:1rem;font-weight:normal}article header .mainToolbar{float:right;display:inline-block;vertical-align:middle;margin:0.3em 0}article header .mainToolbar button{color:#333;outline:none;border:none;background:#e5e5e5;padding:1px 6px;display:inline-block;vertical-align:middle}article header .mainToolbar button span{display:none}article header .mainToolbar button i{font-size:14px;font-size:1.4rem;font-weight:normal;color:#333}article header .mainToolbar button:hover{background:#aaa}article header .mainToolbar button:active,article header .mainToolbar button.current{background:#3f9ec2;color:#fff}article header .mainToolbar button:active i,article header .mainToolbar button.current i{color:#fff}article header .mainToolbar form{display:inline-block;vertical-align:middle}article header .mainToolbar .label{display:inline-block;vertical-align:middle}article .ownertools{-moz-box-sizing:border-box;box-sizing:border-box;padding:0;margin:0;font-size:0px;font-size:0rem;font-weight:normal;margin:10px 0;overflow:hidden}article .ownertools li{font-size:12px;font-size:1.2rem;font-weight:normal;display:inline-block;vertical-align:middle;line-height:0;float:right}article .ownertools li a{margin:0 2px;line-height:1 !important}article .ownertools li a:link,article .ownertools li a:visited{display:inline-block;text-decoration:none;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;padding:3px;border:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.2);text-shadow:0 1px 0 rgba(0,0,0,0.2);outline:none;margin-bottom:0;font-size:14px;font-size:1.4rem;font-weight:normal;line-height:1.428571429;text-align:center;cursor:pointer;white-space:nowrap;color:#fff;background:#3f9ec2}article .ownertools li a:hover{background:#66b2ce}article .ownertools li a:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}article .ownertools li a i{font-size:14px;font-size:1.4rem;font-weight:normal}article .ownertools li a span{display:none !important}article aside{margin-bottom:20px}@media screen and (min-width: 1025px){article aside{float:right;display:block;width:24%}}article aside.tip{padding:20px;-moz-box-sizing:border-box;box-sizing:border-box;background:#f0f0f0}article aside.tip h3{margin:0 0 10px 0}article aside.sort-by{padding:20px;-moz-box-sizing:border-box;box-sizing:border-box;background:#f0f0f0}article aside.sort-by ul{list-style:none;padding:0;margin:0}article aside.sort-by ul li{display:none}article aside.sort-by ul li.popular{display:block}article aside.sort-by fieldset{width:24.6%;margin:auto;padding:5px 0;margin-bottom:10px;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;font-size:11px;font-size:1.1rem;font-weight:normal}article aside.sort-by fieldset legend{font-weight:bold;font-size:12px;font-size:1.2rem;font-weight:normal}@media screen and (min-width: 1025px){article aside.sort-by fieldset{width:100%;display:block}}article aside.sort-by select{width:100%}article aside.sort-by .not-only-popular li{display:block}article aside #ownerbox{padding:4px;display:inline-block;vertical-align:middle;outline:none;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;border:1px solid #bbb;font-family:'Open Sans',sans-serif;width:96%;box-sizing:border-box;margin:0 2%}article .content{display:block}article ul#videoList{padding:0;margin:0;-moz-box-sizing:border-box;box-sizing:border-box;font-size:0px;font-size:0rem;font-weight:normal}article ul#videoList.grid-3 .thumbNail,article ul#videoList.grid-4 .thumbNail,article ul#videoList.grid-5 .thumbNail{display:inline-block;vertical-align:middle;vertical-align:top;list-style:none;-moz-box-sizing:border-box;box-sizing:border-box;margin:0;padding:5px}article ul#videoList.grid-3 .thumbNail .thumbHolder,article ul#videoList.grid-4 .thumbNail .thumbHolder,article ul#videoList.grid-5 .thumbNail .thumbHolder{position:relative}article ul#videoList.grid-3 .thumbNail .thumbHolder ul,article ul#videoList.grid-4 .thumbNail .thumbHolder ul,article ul#videoList.grid-5 .thumbNail .thumbHolder ul{padding:0;margin:0;width:100%;-moz-box-sizing:border-box;box-sizing:border-box}article ul#videoList.grid-3 .thumbNail .thumbHolder ul li,article ul#videoList.grid-4 .thumbNail .thumbHolder ul li,article ul#videoList.grid-5 .thumbNail .thumbHolder ul li{-moz-box-sizing:border-box;box-sizing:border-box;text-align:center;list-style:none;padding:2px;margin:0 4px;display:inline-block;color:#fff;float:right}article ul#videoList.grid-3 .thumbNail .thumbHolder ul li a:link,article ul#videoList.grid-4 .thumbNail .thumbHolder ul li a:link,article ul#videoList.grid-5 .thumbNail .thumbHolder ul li a:link,article ul#videoList.grid-3 .thumbNail .thumbHolder ul li a:visited,article ul#videoList.grid-4 .thumbNail .thumbHolder ul li a:visited,article ul#videoList.grid-5 .thumbNail .thumbHolder ul li a:visited{color:#333;text-decoration:underline}article ul#videoList.grid-3 .thumbNail .thumbHolder ul li a:hover,article ul#videoList.grid-4 .thumbNail .thumbHolder ul li a:hover,article ul#videoList.grid-5 .thumbNail .thumbHolder ul li a:hover,article ul#videoList.grid-3 .thumbNail .thumbHolder ul li a:active,article ul#videoList.grid-4 .thumbNail .thumbHolder ul li a:active,article ul#videoList.grid-5 .thumbNail .thumbHolder ul li a:active{color:#f8af19;text-decoration:none}article ul#videoList.grid-3 .thumbNail .thumbHolder ul li i,article ul#videoList.grid-4 .thumbNail .thumbHolder ul li i,article ul#videoList.grid-5 .thumbNail .thumbHolder ul li i{font-size:14px;font-size:1.4rem;font-weight:normal}article ul#videoList.grid-3 .thumbNail .thumbHolder ul li span,article ul#videoList.grid-4 .thumbNail .thumbHolder ul li span,article ul#videoList.grid-5 .thumbNail .thumbHolder ul li span{display:none}article ul#videoList.grid-3 .thumbNail .thumbHolder ul.infos,article ul#videoList.grid-4 .thumbNail .thumbHolder ul.infos,article ul#videoList.grid-5 .thumbNail .thumbHolder ul.infos{position:absolute;z-index:2011;right:0;background:rgba(0,0,0,0.5)}article ul#videoList.grid-3 .thumbNail .thumbHolder ul.infos li,article ul#videoList.grid-4 .thumbNail .thumbHolder ul.infos li,article ul#videoList.grid-5 .thumbNail .thumbHolder ul.infos li{color:#fff;display:block;width:17px;height:17px;text-align:center;overflow:hidden;margin:2px}article ul#videoList.grid-3 .thumbNail .thumbHolder ul.tools,article ul#videoList.grid-4 .thumbNail .thumbHolder ul.tools,article ul#videoList.grid-5 .thumbNail .thumbHolder ul.tools{float:left;border-bottom:1px solid silver;margin-top:5px}article ul#videoList.grid-3 .thumbNail .thumbHolder a,article ul#videoList.grid-4 .thumbNail .thumbHolder a,article ul#videoList.grid-5 .thumbNail .thumbHolder a{display:block}article ul#videoList.grid-3 .thumbNail .thumbHolder a:link,article ul#videoList.grid-4 .thumbNail .thumbHolder a:link,article ul#videoList.grid-5 .thumbNail .thumbHolder a:link,article ul#videoList.grid-3 .thumbNail .thumbHolder a:visited,article ul#videoList.grid-4 .thumbNail .thumbHolder a:visited,article ul#videoList.grid-5 .thumbNail .thumbHolder a:visited{color:#3f9ec2;text-decoration:none}article ul#videoList.grid-3 .thumbNail .thumbHolder a:hover,article ul#videoList.grid-4 .thumbNail .thumbHolder a:hover,article ul#videoList.grid-5 .thumbNail .thumbHolder a:hover,article ul#videoList.grid-3 .thumbNail .thumbHolder a:active,article ul#videoList.grid-4 .thumbNail .thumbHolder a:active,article ul#videoList.grid-5 .thumbNail .thumbHolder a:active{color:#333;text-decoration:none;background-color:none}article ul#videoList.grid-3 .thumbNail .thumbHolder a .imgHolder,article ul#videoList.grid-4 .thumbNail .thumbHolder a .imgHolder,article ul#videoList.grid-5 .thumbNail .thumbHolder a .imgHolder{display:block;overflow:hidden;width:100%;position:relative;margin-bottom:5px}article ul#videoList.grid-3 .thumbNail .thumbHolder a .imgHolder .playPic,article ul#videoList.grid-4 .thumbNail .thumbHolder a .imgHolder .playPic,article ul#videoList.grid-5 .thumbNail .thumbHolder a .imgHolder .playPic{display:block;height:45px;width:100%;position:absolute;top:40%;text-align:center;font-size:12px;font-size:1.2rem;font-weight:normal}article ul#videoList.grid-3 .thumbNail .thumbHolder a .imgHolder .playPic i,article ul#videoList.grid-4 .thumbNail .thumbHolder a .imgHolder .playPic i,article ul#videoList.grid-5 .thumbNail .thumbHolder a .imgHolder .playPic i{color:rgba(255,255,255,0.66)}article ul#videoList.grid-3 .thumbNail .thumbHolder a .imgHolder img,article ul#videoList.grid-4 .thumbNail .thumbHolder a .imgHolder img,article ul#videoList.grid-5 .thumbNail .thumbHolder a .imgHolder img{border:none;max-width:100%;width:100%;height:auto;vertical-align:bottom}article ul#videoList.grid-3 .thumbNail .thumbHolder a .imgHolder .resume,article ul#videoList.grid-4 .thumbNail .thumbHolder a .imgHolder .resume,article ul#videoList.grid-5 .thumbNail .thumbHolder a .imgHolder .resume{display:block;-moz-box-sizing:border-box;box-sizing:border-box;padding:0;margin:0;padding:2%;position:absolute;z-index:2012;top:100%;bottom:0;color:#fff !important;font-size:11px;font-size:1.1rem;font-weight:normal;background:rgba(0,0,0,0.7);text-shadow:0 1px 1px rgba(0,0,0,0.4);transition:top .1s ease-out;-webkit-transition:top .1s ease-out;-moz-transition:top .1s ease-out;width:100%}@media screen and (min-width: 1025px){article ul#videoList.grid-3 .thumbNail .thumbHolder a .imgHolder .resume,article ul#videoList.grid-4 .thumbNail .thumbHolder a .imgHolder .resume,article ul#videoList.grid-5 .thumbNail .thumbHolder a .imgHolder .resume{font-size:12px;font-size:1.2rem;font-weight:normal}}article ul#videoList.grid-3 .thumbNail .thumbHolder a h3.titre,article ul#videoList.grid-4 .thumbNail .thumbHolder a h3.titre,article ul#videoList.grid-5 .thumbNail .thumbHolder a h3.titre{padding:0;margin:0;-moz-box-sizing:border-box;box-sizing:border-box;font-size:12px;font-size:1.2rem;font-weight:bold;overflow:hidden}@media screen and (min-width: 1025px){article ul#videoList.grid-3 .thumbNail .thumbHolder a h3.titre,article ul#videoList.grid-4 .thumbNail .thumbHolder a h3.titre,article ul#videoList.grid-5 .thumbNail .thumbHolder a h3.titre{font-size:12px;font-size:1.2rem;font-weight:normal}}article ul#videoList.grid-3 .thumbNail .thumbHolder a .resume,article ul#videoList.grid-4 .thumbNail .thumbHolder a .resume,article ul#videoList.grid-5 .thumbNail .thumbHolder a .resume{display:none}article ul#videoList.grid-3 .thumbNail .thumbHolder a:hover .imgHolder .resume,article ul#videoList.grid-4 .thumbNail .thumbHolder a:hover .imgHolder .resume,article ul#videoList.grid-5 .thumbNail .thumbHolder a:hover .imgHolder .resume{display:block;top:0}article ul#videoList.grid-3 .thumbNail .thumbHolder a:hover .imgHolder .playPic i,article ul#videoList.grid-4 .thumbNail .thumbHolder a:hover .imgHolder .playPic i,article ul#videoList.grid-5 .thumbNail .thumbHolder a:hover .imgHolder .playPic i{color:#fff}article ul#videoList.grid-5 .playPic{top:33%}article ul#videoList.list{float:left;width:74%}article ul#videoList.list .thumbNail{display:block;list-style:none;-moz-box-sizing:border-box;box-sizing:border-box;margin:0;padding:5px;clear:both;border-bottom:1px solid #ddd}article ul#videoList.list .thumbNail:nth-child(2n){background:#f4f4f4}article ul#videoList.list .thumbNail .thumbHolder{position:relative;overflow:hidden}article ul#videoList.list .thumbNail .thumbHolder ul{padding:0;margin:0;width:100%;-moz-box-sizing:border-box;box-sizing:border-box}article ul#videoList.list .thumbNail .thumbHolder ul li{-moz-box-sizing:border-box;box-sizing:border-box;text-align:center;list-style:none;padding:2px;margin:0 4px;display:inline-block;color:#fff;float:right}article ul#videoList.list .thumbNail .thumbHolder ul li i{font-size:14px;font-size:1.4rem;font-weight:normal}article ul#videoList.list .thumbNail .thumbHolder ul li span{display:none}article ul#videoList.list .thumbNail .thumbHolder ul.infos{width:40%;position:absolute;z-index:2003;left:0;background:rgba(0,0,0,0.5)}@media screen and (min-width: 1025px){article ul#videoList.list .thumbNail .thumbHolder ul.infos{width:25%}}article ul#videoList.list .thumbNail .thumbHolder ul.infos li{color:#fff;display:block;width:17px;height:17px;text-align:center;overflow:hidden;margin:2px}article ul#videoList.list .thumbNail .thumbHolder ul.tools{float:left;margin-top:5px;bottom:0;position:absolute}article ul#videoList.list .thumbNail .thumbHolder a{display:block}article ul#videoList.list .thumbNail .thumbHolder a:link,article ul#videoList.list .thumbNail .thumbHolder a:visited{color:#3f9ec2;text-decoration:none}article ul#videoList.list .thumbNail .thumbHolder a:hover,article ul#videoList.list .thumbNail .thumbHolder a:active{color:#333;text-decoration:none;background-color:none}article ul#videoList.list .thumbNail .thumbHolder a:hover .imgHolder .playPic i{color:#fff}article ul#videoList.list .thumbNail .thumbHolder a .imgHolder{float:left;display:block;overflow:hidden;width:40%;margin-right:1%;position:relative}article ul#videoList.list .thumbNail .thumbHolder a .imgHolder .playPic{position:absolute;top:33%;width:100%;height:45px;display:block;font-size:12px;font-size:1.2rem;font-weight:normal;text-align:center}article ul#videoList.list .thumbNail .thumbHolder a .imgHolder .playPic i{color:rgba(255,255,255,0.66)}@media screen and (min-width: 1025px){article ul#videoList.list .thumbNail .thumbHolder a .imgHolder{width:25%}}article ul#videoList.list .thumbNail .thumbHolder a .imgHolder img{border:none;max-width:100%;width:100%;height:auto}article ul#videoList.list .thumbNail .thumbHolder a .imgHolder .resume{display:none}article ul#videoList.list .thumbNail .thumbHolder a h3.titre{padding:0;margin:0;-moz-box-sizing:border-box;box-sizing:border-box;font-size:13px;font-size:1.3rem;font-weight:normal;overflow:hidden}@media screen and (min-width: 1025px){article ul#videoList.list .thumbNail .thumbHolder a h3.titre{font-size:14px;font-size:1.4rem;font-weight:normal}}article ul#videoList.list .thumbNail .thumbHolder a .resume{display:block;color:#333 !important;font-size:12px;font-size:1.2rem;font-weight:normal;padding-top:10px}article .similar .thumbHolder .infos{display:none !important}article .theme_list{padding:0;margin:0}article .theme_list li{-moz-box-sizing:border-box;box-sizing:border-box;display:inline-block;vertical-align:middle;margin:1px 0}article .theme_list li:nth-child(2n){background:#f1f1f1}article .theme_list li a{display:inline-block;vertical-align:middle;padding:5px;-moz-box-sizing:border-box;box-sizing:border-box}article .theme_list li a:link,article .theme_list li a:visited{color:#f8af19;text-decoration:none}article .theme_list li a:hover,article .theme_list li a:active{color:#141414;text-decoration:none;background-color:none}article .theme_list li img{display:inline-block;vertical-align:middle}article .theme_list li b{display:block;padding:5px;-moz-box-sizing:border-box;box-sizing:border-box;color:#3f9ec2}article .theme_list li b:before{font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f138";padding:0 6px 0 0;color:#3f9ec2 !important}article .paginator{clear:both;padding-top:20px;text-align:center}article .paginator span,article .paginator a{display:inline-block;vertical-align:middle;width:32px;padding:8px 0;background:#3f9ec2;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;font-size:14px;font-size:1.4rem;font-weight:bold}article .paginator a:link,article .paginator a:visited{color:#141414;text-decoration:none}article .paginator a:hover,article .paginator a:active{color:#fff;text-decoration:none}article .paginator span{background:#ddd;color:#141414}article .datetimeshortcuts{font-size:14px;font-size:1.4rem;font-weight:normal}article .datetimeshortcuts img{vertical-align:text-bottom}article .hint{margin-left:27%;margin-top:5px;margin-bottom:15px}@media screen and (min-width: 1025px){article .hint{margin:0;margin-left:5px;cursor:pointer;position:relative;display:inline-block;vertical-align:middle}article .hint:before{line-height:1;z-index:2004;position:relative;content:"?";color:#fff;background:#0bf;border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;-webkit-border-radius:50%;height:16px;width:16px;text-align:center;font-weight:bold;display:block;font-size:14px;font-size:1.4rem;font-weight:normal;text-shadow:0 1px 1px rgba(0,0,0,0.4);font-family:verdana}article .hint .bullet{z-index:2005;position:absolute;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;background:rgba(0,0,0,0.7);left:30px;top:-20px;width:200px;font-size:11px;font-size:1.1rem;font-weight:normal;padding:10px;color:#fff;text-shadow:0 1px 1px rgba(0,0,0,0.4);opacity:0;transition:opacity .5s ease-out;-webkit-transition:opacity .5s ease-out;-moz-transition:opacity .5s ease-out;visibility:hidden}article .hint .bullet:before{content:"";position:absolute;width:0;height:0;border-style:solid;border-width:10px 10px 10px 0;border-color:transparent rgba(0,0,0,0.7) transparent transparent;top:17px;left:-10px}article .hint:hover .bullet{opacity:1;visibility:visible}article .hint:hover:before{background:#333}}article .form #id_video{padding:5px}article .form .field{-moz-box-sizing:border-box;box-sizing:border-box;margin:10px 0}article .form .field.connect a{font-size:15px;font-size:1.5rem;font-weight:normal;font-weight:bold}article .form .field.buttons{text-align:center}article .form .field ul.thumbPicker{display:inline-block;vertical-align:middle;padding:0;margin:0;list-style:none}article .form .field ul.thumbPicker li{display:inline-block;vertical-align:middle;border:2px solid transparent;cursor:pointer}article .form .field ul.thumbPicker li.current{border-color:#f8af19}article .form .field ul.thumbPicker li.current img{filter:grayscale(0);-webkit-filter:grayscale(0);-o-filter:grayscale(0);-moz-filter:grayscale(0)}article .form .field ul.thumbPicker li img{height:64px;width:auto;display:block;filter:grayscale(1);-webkit-filter:grayscale(1);-o-filter:grayscale(1);-moz-filter:grayscale(1)}article .form .field label{width:25%;display:inline-block;vertical-align:middle;text-align:right;font-weight:bold;margin-right:5px;font-size:12px;font-size:1.2rem;font-weight:normal;text-transform:uppercase}article .form .field input[type="text"],article .form .field input[type="url"],article .form .field input[type="password"],article .form .field textarea,article .form .field select{padding:8px;display:inline-block;vertical-align:middle;outline:none;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;border:1px solid #bbb;min-width:380px;font-family:'Open Sans',sans-serif}article .form .field textarea{vertical-align:text-top}article .form .field input[type="checkbox"]{display:inline-block;vertical-align:middle}article .form.guest .field{text-align:center}article .form.guest label{display:none !important}article .form.guest i{font-size:14px;font-size:1.4rem;font-weight:normal}article .form.guest span.icon{display:inline-block;vertical-align:middle;border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;-ms-border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;color:#fff;padding:6px;border:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.2);text-shadow:0 1px 0 rgba(0,0,0,0.2);outline:none;margin-bottom:0;font-size:14px;font-size:1.4rem;font-weight:normal;line-height:1.428571429;text-align:center;white-space:nowrap;color:#141414;background:#ddd}article .form.guest input[type="text"],article .form.guest input[type="password"]{border-radius:0 4px 4px 0 !important;-moz-border-radius:0 4px 4px 0 !important;-ms-border-radius:0 4px 4px 0 !important;-webkit-border-radius:0 4px 4px 0 !important;margin-left:0 !important}article .form.guest .log{text-align:center}article .form.completion-user .field{text-align:left;float:none;margin:0 5px}@media screen and (min-width: 1025px){article .form.completion-user .field{float:left;text-align:center}}article .form.completion-user label{display:none !important}article .form.completion-user span{display:inline-block;vertical-align:middle;border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;-ms-border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;color:#fff;padding:6px;border:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.2);text-shadow:0 1px 0 rgba(0,0,0,0.2);outline:none;margin-bottom:0;font-size:14px;font-size:1.4rem;font-weight:normal;line-height:1.428571429;text-align:center;white-space:nowrap;color:#141414;background:#ddd}article .form.completion-user span i{font-size:14px;font-size:1.4rem;font-weight:normal}article .form.completion-user input[type="text"],article .form.completion-user select{border-radius:0 4px 4px 0 !important;-moz-border-radius:0 4px 4px 0 !important;-ms-border-radius:0 4px 4px 0 !important;-webkit-border-radius:0 4px 4px 0 !important;margin-left:0 !important;min-width:88%}@media screen and (min-width: 1025px){article .form.completion-user input[type="text"],article .form.completion-user select{min-width:150px}}article .form.completion-user select{padding:7px}article .form.completion-user .log{text-align:center}article .form.completion-user .add,article .form.completion-user .delete{padding:7px;font-size:20px;font-size:2rem;font-weight:normal;float:right}@media screen and (min-width: 1025px){article .form.completion-user .add,article .form.completion-user .delete{float:left}}article input[type="submit"]{border:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.2);text-shadow:0 1px 0 rgba(0,0,0,0.2);outline:none;display:inline-block;vertical-align:middle;padding:6px 12px;margin-bottom:0;font-size:14px;font-size:1.4rem;font-weight:normal;line-height:1.428571429;text-align:center;cursor:pointer;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;white-space:nowrap;color:#fff;background:#437828}article input[type="submit"]:hover{background:#589e35}article input[type="submit"]:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}article input[type="submit"] *{display:inline-block;vertical-align:middle}article input[type="submit"] i{color:#fff}article input[name="action1"]{border:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.2);text-shadow:0 1px 0 rgba(0,0,0,0.2);outline:none;display:inline-block;vertical-align:middle;padding:6px 12px;margin-bottom:0;font-size:14px;font-size:1.4rem;font-weight:normal;line-height:1.428571429;text-align:center;cursor:pointer;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;white-space:nowrap;color:#fff;background:#437828}article input[name="action1"]:hover{background:#589e35}article input[name="action1"]:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}article input[name="action1"] *{display:inline-block;vertical-align:middle}article input[name="action1"] i{color:#fff}article input[name="action2"],article input[name="action3"]{border:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.2);text-shadow:0 1px 0 rgba(0,0,0,0.2);outline:none;display:inline-block;vertical-align:middle;padding:6px 12px;margin-bottom:0;font-size:14px;font-size:1.4rem;font-weight:normal;line-height:1.428571429;text-align:center;cursor:pointer;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;white-space:nowrap;color:#fff;background:#3f9ec2}article input[name="action2"]:hover,article input[name="action3"]:hover{background:#66b2ce}article input[name="action2"]:active,article input[name="action3"]:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}article input[name="action2"] *,article input[name="action3"] *{display:inline-block;vertical-align:middle}article input[name="action2"] i,article input[name="action3"] i{color:#fff}article .related-lookup{display:inline-block !important;vertical-align:middle !important;margin:0 5px !important}article .related-lookup:link,article .related-lookup:visited{display:block;text-decoration:none;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;padding:5px;border:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.2);text-shadow:0 1px 0 rgba(0,0,0,0.2);outline:none;margin-bottom:0;font-size:12px;font-size:1.2rem;font-weight:normal;line-height:1.428571429;text-align:center;cursor:pointer;white-space:nowrap;color:#fff;background:#3f9ec2}article .related-lookup:hover{background:#66b2ce}article .related-lookup:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}article .related-lookup:before{font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f002"}article .related-lookup img{display:none !important}article #id_headband_thumbnail_img,article #id_thumbnail_thumbnail_img,article #id_image_thumbnail_img{display:inline-block;vertical-align:middle;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px}article .jqEasyCounterMsg{display:inline-block;vertical-align:middle;width:auto !important}article #contributor .field,article #track .field,article #doc .field{-moz-box-sizing:border-box;box-sizing:border-box;margin:10px 0}article #contributor .field label,article #track .field label,article #doc .field label{width:25%;display:inline-block;vertical-align:middle;text-align:right;font-weight:bold;margin-right:5px;font-size:12px;font-size:1.2rem;font-weight:normal;text-transform:uppercase}article #contributor .field input[type="text"],article #track .field input[type="text"],article #doc .field input[type="text"],article #contributor .field input[type="url"],article #track .field input[type="url"],article #doc .field input[type="url"],article #contributor .field input[type="email"],article #track .field input[type="email"],article #doc .field input[type="email"],article #contributor .field input[type="password"],article #track .field input[type="password"],article #doc .field input[type="password"],article #contributor .field textarea,article #track .field textarea,article #doc .field textarea,article #contributor .field select,article #track .field select,article #doc .field select{padding:8px;display:inline-block;vertical-align:middle;outline:none;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;border:1px solid #bbb;min-width:380px;font-family:'Open Sans',sans-serif}article #connCas:link,article #connCas:visited{display:inline-block;text-decoration:none;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;padding:5px;border:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.2);text-shadow:0 1px 0 rgba(0,0,0,0.2);outline:none;margin-bottom:0;font-size:12px;font-size:1.2rem;font-weight:normal;line-height:1.428571429;text-align:center;cursor:pointer;white-space:nowrap;color:#fff;background:#437828}article #connCas:hover{background:#589e35}article #connCas:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}article #connInv:link,article #connInv:visited{display:inline-block;text-decoration:none;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;padding:5px;border:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.2);text-shadow:0 1px 0 rgba(0,0,0,0.2);outline:none;margin-bottom:0;font-size:12px;font-size:1.2rem;font-weight:normal;line-height:1.428571429;text-align:center;cursor:pointer;white-space:nowrap;color:#fff;background:#3f9ec2}article #connInv:hover{background:#66b2ce}article #connInv:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}article #chapter_form{display:inline-block;vertical-align:middle;width:100%;width:83%}article #chapter_form #chapters{display:block}article #chapter_form #chapters #formset{min-height:280px;width:100%;overflow-x:hidden;overflow-y:auto;display:block;position:relative}article #chapter_form #chapters #formset .data-formset-add{position:absolute}article #chapter_form #chapters #formset .data-formset-body{position:absolute}article #chapter_form #chapters #formset .data-formset-body .form-container{float:left;-moz-box-sizing:border-box;box-sizing:border-box;border:1px solid #ccc;margin:5px 0px;padding:2px}article #chapter_form #chapters #formset .data-formset-body .form-container .field{display:inline-block;vertical-align:top;width:49%}article .prevChapter,article .nextChapter{display:inline-block;vertical-align:middle;text-align:center;width:8%;-moz-box-sizing:border-box;box-sizing:border-box}article .prevChapter span,article .nextChapter span{display:none !important}#global_video #player{display:block;width:100%;background:#000;padding-bottom:0 !important}#global_video #player.simplevideo{width:90% !important;margin:auto}#global_video #player.simplevideo #player_video[style]{width:100% !important;height:auto !important}#global_video #player.simplevideo #player_video[style] #player_video_html5_api{position:static !important}#global_video #info_video .data{width:69%}#global_video #info_video .meta{border-left:5px solid #333;-moz-box-sizing:border-box;box-sizing:border-box;padding-left:15px;width:30%;float:right}#global_video #info_video .meta h3{margin:0}#global_video #info_video .meta .views{color:#3f9ec2}#global_video #info_video .meta img{display:inline-block;vertical-align:middle;width:24px;height:24px;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px}#global_video #info_video .meta span.fullname{display:inline-block;vertical-align:middle}#global_video #info_video .meta ul{padding:0;margin:0;list-style:none}#global_video #info_video .meta ul li{margin:4px 0}#global_video #info_video .meta ul.downloads{margin:15px 0}#global_video #info_video .meta ul.downloads li.download-file a:link,#global_video #info_video .meta ul.downloads li.download-file a:visited{display:block;text-decoration:none;border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-webkit-border-radius:4px;padding:5px;border:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.2);text-shadow:0 1px 0 rgba(0,0,0,0.2);outline:none;margin-bottom:0;font-size:12px;font-size:1.2rem;font-weight:normal;line-height:1.428571429;text-align:center;cursor:pointer;white-space:nowrap;color:#fff;background:#3f9ec2}#global_video #info_video .meta ul.downloads li.download-file a:hover{background:#66b2ce}#global_video #info_video .meta ul.downloads li.download-file a:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}#preview{position:absolute;height:64px;width:86px;border:1px solid black;margin:0;padding:0}ul li.vjs-menu-title.vjs-res-menu-title:hover,ul li.vjs-menu-title.vjs-disp-menu-title:hover{cursor:default;background-color:transparent;color:#CCC;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.vjs-chapbar{color:red;top:-1em;height:100%;position:relative;background:rgba(100,100,100,0.5)}.vjs-chapbar-holder{height:100%}.vjs-chapbar-chap{height:100%;float:left;width:100%;left:0;right:0;position:absolute;background-color:#ffe800;background:#ffe800;background:-moz-linear-gradient(top, #ffe800, #a69700);background:-webkit-gradient(linear, 0 0, 0 100%, from(#ffe800), to(#a69700));background:-webkit-linear-gradient(top, #ffe800, #a69700);background:-o-linear-gradient(top, #ffe800, #a69700);background:-ms-linear-gradient(top, #ffe800, #a69700);background:linear-gradient(top, #ffe800, #a69700);opacity:.8}.video-js .vjs-slide{position:absolute;top:0;background-color:#fff;overflow-y:auto}.video-js[style]{display:inline-block;width:100% !important}.video-js .vjs-title{position:absolute;top:0;left:10%;background-color:#ccc;height:10%;width:80%;opacity:.6;text-align:center;font-size:3em;line-height:1em;color:darkblue;z-index:1000}.video-js .vjs-slide>*{width:100%;position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);-o-transform:translate(-50%, -50%);-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);font-size:1.2em;color:#000}.video-js .vjs-slide>article{height:100%;width:100%;background-color:#fff;overflow:auto}.video-js .vjs-slide>article>div,.video-js .vjs-slide>article>object{width:99%;height:99%}.video-js .vjs-slide>article>img,.video-js .vjs-slide>article>div>iframe{vertical-align:middle;position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);-o-transform:translate(-50%, -50%);-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.video-js .vjs-slide>article>img{max-width:99%;max-height:99%}.vjs-default-skin .vjs-big-play-button{top:30% !important;width:100% !important;height:6em !important;background:none !important;border:none !important;-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important}.vjs-default-skin .vjs-big-play-button:hover{-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important}.vjs-default-skin .vjs-big-play-button:hover:before{color:#3f9ec2 !important}.vjs-default-skin .vjs-big-play-button:before{font-family:FontAwesome !important;font-style:normal !important;font-weight:normal !important;line-height:1 !important;-webkit-font-smoothing:antialiased !important;-moz-osx-font-smoothing:grayscale !important;content:"\f144" !important;font-size:8em !important;-webkit-text-shadow:3px 3px 5px #333 !important;-moz-text-shadow:3px 3px 5px #333 !important;text-shadow:3px 3px 5px #333 !important;color:#f1f1f1 !important}#cke_id_description,div.richtext p div{margin-left:auto;margin-right:auto}article.messages{position:fixed;top:20%;left:50%;margin-left:-400px;width:800px;text-align:center;font-weight:bold;background:#ffffff;z-index:2051;padding:10px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-shadow:0 0 5px #333;-moz-box-shadow:0 0 5px #333;box-shadow:0 0 5px #333}p.info{background-color:#00d800}p.error{background-color:#d80000}span.info{background-color:#00d800}span.error{background-color:#d80000}a.show-desc span{position:absolute;background-color:white;background:#ffffff;z-index:51;padding:10px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-moz-box-shadow:0px 0px 5px #444444;-webkit-box-shadow:0px 0px 5px #444444;box-shadow:0px 0px 5px #444444}.backdrop{position:fixed;top:0px;left:0px;width:100%;height:100%;background:#000;opacity:.0;filter:alpha(opacity=0);z-index:50;display:none}.mediabox{position:fixed;top:50%;left:50%;width:800px;height:500px;margin-left:-400px;margin-top:-250px;background:#ffffff;z-index:2051;padding:10px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-moz-box-shadow:0px 0px 5px #444444;-webkit-box-shadow:0px 0px 5px #444444;box-shadow:0px 0px 5px #444444;display:none;overflow:auto}.dynamic-form{padding:5px 15px}footer{background:#333;background:-moz-linear-gradient(top, #333 0, #141414 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0, #333), color-stop(100%, #141414));background:-webkit-linear-gradient(top, #333 0, #141414 100%);background:-o-linear-gradient(top, #333 0, #141414 100%);background:-ms-linear-gradient(top, #333 0, #141414 100%);background:linear-gradient(to bottom, #333 0, #141414 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333',endColorstr='#141414',GradientType=0);text-transform:uppercase;color:#fff}footer a:link,footer a:visited{color:#fff;text-decoration:none}footer a:hover,footer a:active{color:#ee7d19;text-decoration:none}footer>ul{padding:0;margin:20px 0}footer>ul li{-moz-box-sizing:border-box;box-sizing:border-box;padding-right:10px}footer .logo{width:90%;margin:auto}footer .externalLinks li,footer .internalLinks li{margin:5px 0}footer .externalLinks li:before,footer .internalLinks li:before{font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f105";margin-right:5px}.tags{margin:5px 0}.tags>a{position:relative;margin:0 5px 7px 10px !important;background:#868686 !important;display:inline-block;height:20px;padding:0 7px 0 9px !important;font-size:14px;font-size:1.4rem;font-weight:normal;line-height:19px;white-space:nowrap !important;border-top-right-radius:3px;border-bottom-right-radius:3px}.tags>a span{display:inline-block;max-width:200px;color:#fff;font-family:Verdana,Tahoma,sans-serif;font-weight:100;font-size:11px;font-size:1.1rem;font-weight:normal;line-height:20px;text-shadow:0 1px 1px rgba(0,0,0,0.4);white-space:nowrap;cursor:pointer}.tags>a span:before{content:"";position:absolute;width:0;height:0;border-style:solid;border-width:10px 10px 10px 0;border-color:transparent #868686 transparent transparent;top:0px;left:-10px}.tags>a span:after{content:"";position:absolute;width:4px;height:4px;background:#fff;top:7px;left:-1px;border-radius:50%;border:1px solid #797979;box-shadow:0 0 1px rgba(255,255,255,0.5)}.hide{display:none !important}.no-height{height:0px !important;overflow:hidden} \ No newline at end of file diff --git a/pod_project/core/static/LILLE1/style/pod.less b/pod_project/core/static/LILLE1/style/pod.less deleted file mode 100755 index 476d54b0..00000000 --- a/pod_project/core/static/LILLE1/style/pod.less +++ /dev/null @@ -1,346 +0,0 @@ -@charset "utf-8"; -/* CSS Document */ -/* YB Lille1*/ -@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700); -@import "acces.less"; -#acces { - .hide; -} -@import "vars.less"; -@import "mixins.less"; -// fonctions -.fa-6x { - font-size:6em; -} //awesome font 6x -html{ - font-size:62.5%; //= 10px -} -::selection { - color: @lightgrey; - background: @complementary; -} -/*a[href^="http://"]:not([href*="univ-lille1.fr"]):after, a[href^="https://"]:not([href*="univ-lille1.fr"]):after{ - .fontA("\f0ac"); -}*/ -/* CLEAR FIX *******************************************************************************************************************/ -.clearfix:after { - content: "."; - display: block; - clear: both; - visibility: hidden; - line-height: 0; - height: 0; -} -.clearfix { - display: block; -} -html[xmlns] .clearfix { - display: block; -} -* html .clearfix { - height: 1%; -} -/********************************************************************************************************************/ -body { - line-height: 1.2; - font-family: @font; - .rem(12); - //background: #dedede url("shattered.png"); - background: #222 url("binding_dark.png"); - .noSpace; - overflow-y: scroll; -} -.to-top { - position: fixed; - bottom: 20px; - right: 20px; - background: @maincolor; - padding: 5px; - .rem(10); - .radius; - text-align: center; - width: 45px; - text-decoration:none; - overflow: hidden; - display: none; - height: 55px; - .linksIn(#fff,#333,none,none); -} -section#page { - width: 100%; - //background: url("pod_body.png") no-repeat center top; - //border-top: 3px solid @maincolor; -} -@import "header.less"; -article { - //.links (@complementary,@analogue,none,none); - background:#fff; - position:relative; - header { - width: 100%; - overflow: hidden; - //padding: 10px 0; - padding:0; - //background: @maincolor; - margin-bottom: 10px; - h2 { - margin: 0.3em 0; - float: left; - } - .stats { - clear: both; - background: @superlight; - .noSpace; - list-style: none; - //.radius; - li { - .inline; - float: left; - text-align: center; - padding:5px 5px 5px 2px; - margin:5px 5px 5px 0; - min-width: 64px; - border-right:1px solid #ccc; - .rem(16); - font-weight: bold; - span { - font-weight:normal; - display:block; - .rem(10); - } - } - } - .mainToolbar { - float: right; - .inline; - margin:0.3em 0; - button { - color:@mediumdark; - .nofocus; - border: none; - background:#e5e5e5; - padding: 1px 6px; - .inline; - span { - display: none; - } - i { - .rem(14); - color:@mediumdark; - } - &:hover { - background: #aaa; - } - &:active, &.current { - background: @complementary; - color: #fff; - i { - color: #fff; - } - } - } - form { - .inline; - } - .label { - .inline; - } - } - } - .ownertools { - .borderBox; - .noSpace; - .rem(0); - margin: 10px 0; - overflow: hidden; - li { - .rem(12); - .inline; - line-height:0; - float: right; - a { - margin:0 2px; - .bigLink(@complementary,3px,14,inline-block); - line-height: 1 !important; - i { - .rem(14); - } - span { - .hide; - } - } - } - } - @import "aside.less"; - .content { - display: block; - //overflow:hidden; - } - @import "videolist.less"; - @import "form.less"; -} -@import "player.less"; -#cke_id_description, div.richtext p div { - margin-left: auto; - margin-right: auto; -} -article.messages{ - position: fixed; - top: 20%; - left: 50%; - margin-left: -400px; - width: 800px; - text-align:center; - font-weight: bold; - background: #ffffff; - z-index: 2051; - padding: 10px; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; - .shadow(0px, 5px, @mediumdark); -} -p.info{ - background-color:rgb(0,216,0); -} -p.error{ - background-color:rgb(216,0,0); -} -span.info{ - background-color:rgb(0,216,0); -} -span.error{ - background-color:rgb(216,0,0); -} -a.show-desc span { - position: absolute; - background-color:white; - background: #ffffff; - z-index: 51; - padding: 10px; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; - -moz-box-shadow: 0px 0px 5px #444444; - -webkit-box-shadow: 0px 0px 5px #444444; - box-shadow: 0px 0px 5px #444444; -} -.backdrop { - position: fixed; - top: 0px; - left: 0px; - width: 100%; - height: 100%; - background: #000; - opacity: .0; - filter: alpha(opacity=0); - z-index: 50; - display: none; -} -.mediabox { - position: fixed; - top: 50%; - left: 50%; - width: 800px; - height: 500px; - margin-left: -400px; - margin-top: -250px; - background: #ffffff; - z-index: 2051; - padding: 10px; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; - -moz-box-shadow: 0px 0px 5px #444444; - -webkit-box-shadow: 0px 0px 5px #444444; - box-shadow: 0px 0px 5px #444444; - display: none; - overflow: auto; -} -.dynamic-form { padding: 5px 15px; } -footer { - .gradient(@mediumdark,@dark,0%,100%); - .links(#fff,@analogue,none,none); - text-transform: uppercase; - color: #fff; - & > ul { - padding: 0; - margin: 20px 0; - li { - .borderBox; - padding-right:10px; - } - } - .logo { - width: 90%; - margin: auto; - } - .externalLinks, .internalLinks { - li { - margin: 5px 0; - &:before { - .fontA("\f105"); - margin-right: 5px; - } - } - } -} -.tags { - margin: 5px 0; - & > a { - position: relative; - margin: 0 5px 7px 10px !important; - background: #868686 !important; - display: inline-block; - height: 20px; - padding: 0 7px 0 9px !important; - .rem(14); - line-height: 19px; - white-space: nowrap !important; - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - span { - display: inline-block; - max-width: 200px; - color: #fff; - font-family: Verdana, Tahoma, sans-serif; - font-weight: 100; - .rem(11); - line-height: 20px; - text-shadow: 0 1px 1px rgba(0,0,0,.4); - white-space: nowrap; - cursor: pointer; - } - span:before { - content: ""; - position: absolute; - width: 0; - height: 0; - border-style: solid; - border-width: 10px 10px 10px 0; - border-color: transparent #868686 transparent transparent; - top: 0px; - left: -10px; - } - span:after { - content: ""; - position: absolute; - width: 4px; - height: 4px; - background: #fff; - top: 7px; - left: -1px; - border-radius: 50%; - border: 1px solid #797979; - box-shadow: 0 0 1px rgba(255,255,255,.5); - } - } -} -.hide { - display: none !important; -} -.no-height { - height: 0px !important; - overflow:hidden; - -} \ No newline at end of file diff --git a/pod_project/core/static/LILLE1/style/pod_body.png b/pod_project/core/static/LILLE1/style/pod_body.png deleted file mode 100755 index 26e5a70b..00000000 Binary files a/pod_project/core/static/LILLE1/style/pod_body.png and /dev/null differ diff --git a/pod_project/core/static/LILLE1/style/semm.png b/pod_project/core/static/LILLE1/style/semm.png deleted file mode 100755 index 4ad578d7..00000000 Binary files a/pod_project/core/static/LILLE1/style/semm.png and /dev/null differ diff --git a/pod_project/core/static/LILLE1/style/shattered.png b/pod_project/core/static/LILLE1/style/shattered.png deleted file mode 100755 index 90ed42b8..00000000 Binary files a/pod_project/core/static/LILLE1/style/shattered.png and /dev/null differ diff --git a/pod_project/core/static/LILLE1/style/slider.less b/pod_project/core/static/LILLE1/style/slider.less deleted file mode 100755 index 78655d3d..00000000 --- a/pod_project/core/static/LILLE1/style/slider.less +++ /dev/null @@ -1,82 +0,0 @@ -#slider { - .global(); - clear:both; - overflow:hidden; - background: whitesmoke; - .flexslider { - .borderBox; - .radius(0); - width:45%; - float:left; - .flex-viewport { - max-height: 312px !important; - ul li { - .resume { - position: absolute; - bottom: 0; - background: rgba(0, 0, 0, 0.7); - color: #FFF; - padding: 5px; - .rem(11); - width: 100%; - .borderBox; - } - i.fa { - position: absolute; - top: 35%; - width: 100%; - text-align: center; - color:rgba(255,255,255,0.6); - } - img { - border: none; - } - h3 { - display:none; - } - &:hover i.fa { - color:rgba(255,255,255,1); - } - } - } - } - .sliderThumbs { - .noSpace; - height: 100%; - .borderBox; - width:54%; - float:right; - display:block; - li { - list-style:none; - //.gradient (#f0f0f0, #ddd, 0, 100); - border-bottom:1px solid #d8d8d8; - //height: 34px; - padding: 1% 5px; - .borderBox; - font-weight: bold; - text-transform: uppercase; - cursor: pointer; - white-space: nowrap; - overflow:hidden; - -o-text-overflow: ellipsis; /* pour Opera 9 */ - text-overflow: ellipsis; - .tween(background-color); - .tween(color); - .rem(11); - &:nth-child(2n){ - background: #e9e9e9; - } - @media @desktop { - padding: 1.7% 5px; - } - &.flex-active { - color: @maincolor; - background:#333; - } - &:first-child { - border-top:1px solid #d8d8d8; - } - } - } -} diff --git a/pod_project/core/static/LILLE1/style/vars.less b/pod_project/core/static/LILLE1/style/vars.less deleted file mode 100755 index 241ed524..00000000 --- a/pod_project/core/static/LILLE1/style/vars.less +++ /dev/null @@ -1,38 +0,0 @@ -//max screen width -@screenWidth: 1200px; -//font family & reference size -//@font: "Trebuchet MS", Verdana, Sans Serif; -@font: 'Open Sans', sans-serif; -@main-font-size: 10; -//colors themes - triadic 30° (main,darken,complementary) -@orange-theme: #f8af19, #ee7d19, #3f9ec2,#604fcd; -@blue-theme: #00a9e0, darken(#00a9e0,15%), #ffb400; -@lagoon-theme: #66cccc, #218585,#ff8080; -// -// misc colors -@green: #437828; -@red: #9d201b; -@pink: #CA1474; -// five shades of grey -@smoke: #f1f1f1; -@lightgrey: #dddddd; -@grey: #666666; -@black1: #333333; -@black2: #141414; -// -//CHANGE COLOR THEME HERE -@theme : @lagoon-theme; -//theme extraction -@maincolor: extract(@theme, 1); -@analogue: extract(@theme, 2); -@complementary: extract(@theme, 3); -@tetra: extract(@theme, 4); -@superlight: @smoke; -@light: @lightgrey; -@mediumdark: @black1; -@dark: @black2; -// -//media queries -@phone: ~"@media screen and (max-width: 480px)"; -@tablet: ~"screen and (min-width: 481px) and (max-width: 1024px)"; //768 -@desktop: ~"screen and (min-width: 1025px)"; \ No newline at end of file diff --git a/pod_project/core/static/LILLE1/style/videolist.less b/pod_project/core/static/LILLE1/style/videolist.less deleted file mode 100755 index fdbf69c2..00000000 --- a/pod_project/core/static/LILLE1/style/videolist.less +++ /dev/null @@ -1,333 +0,0 @@ -ul#videoList { - .noSpace; - .borderBox; - .rem(0); -} -ul#videoList.grid-3, ul#videoList.grid-4, ul#videoList.grid-5 { -.thumbNail { - .inline; - vertical-align: top; - //float: left; - list-style:none; - .borderBox; - margin:0; - padding:5px; - .thumbHolder { - position:relative; - ul { - .noSpace; - width:100%; - .borderBox; - li { - .borderBox; - text-align: center; - list-style:none; - padding: 2px; - margin:0 4px; - display: inline-block; - color:#fff; - float:right; - .links(@mediumdark,@maincolor); - i{ - .rem(14); - } - span { - display:none; - } - } - &.infos{ - position: absolute; - z-index: 2011; - right:0; - background: rgba(0,0,0,0.5); - li { - color: #fff; - display:block; - //background: @maincolor; - width:17px; - height:17px; - text-align:center; - overflow:hidden; - margin:2px; - &.active { - //color:@green; - } - &.inactive { - //color:@red; - } - } - } - &.tools{ - float:left; - border-bottom:1px solid silver; - margin-top:5px; - } - } - a { - display:block; - .linksIn(@complementary,@mediumdark,none); - .imgHolder { - display: block; - overflow: hidden; - width: 100%; - position: relative; - margin-bottom: 5px; - .playPic { - display: block; - height: 45px; - width: 100%; - position: absolute; - top: 40%; - text-align:center; - .rem(12); - i { - color: rgba(255,255,255,.66); - } - } - img { - border:none; - max-width:100%; - width: 100%; - height: auto; - vertical-align: bottom; - } - .resume { - display: block; - .borderBox; - .noSpace; - padding: 2%; - position: absolute; - z-index: 2012; - top: 100%; - bottom: 0; - color:#fff !important; - .rem(11); - background: rgba(0,0,0,0.7); - text-shadow: 0 1px 1px rgba(0,0,0,.4); - .tween(top,0.1s); - width:100%; - @media @desktop { - .rem(12); - } - } - } - h3.titre { - .noSpace; - .borderBox; - .rem(12,bold); - overflow:hidden; - @media @desktop { - .rem(12); - } - } - .resume { - display: none; - } - &:hover .imgHolder .resume { - display:block; - top: 0; - } - &:hover .imgHolder .playPic i { - color: #fff; - } - - } - } - } -} -ul#videoList.grid-5 .playPic { - top: 33%; -} -ul#videoList.list { - float: left; - width: 74%; - .thumbNail { - &:nth-child(2n){ - background:#f4f4f4; - } - display:block; - list-style:none; - .borderBox; - margin:0; - padding:5px; - clear: both; - border-bottom: 1px solid #ddd; - .thumbHolder { - position:relative; - overflow:hidden; - ul { - .noSpace; - width:100%; - .borderBox; - li { - .borderBox; - text-align: center; - list-style:none; - padding: 2px; - margin:0 4px; - display: inline-block; - color:#fff; - float:right; - //.links(@mediumdark,@maincolor); - i{ - .rem(14); - } - span { - display:none; - } - } - &.infos{ - //float:right; - //display:none; - width: 40%; - position: absolute; - z-index: 2003; - left:0; - background: rgba(0,0,0,0.5); - @media @desktop { - width: 25%; - } - li { - color: #fff; - display:block; - //background: @maincolor; - width:17px; - height:17px; - text-align:center; - overflow:hidden; - margin:2px; - &.active { - //color:green; - } - &.inactive { - //color:firebrick; - } - } - } - &.tools{ - float:left; - //border-bottom:1px solid silver; - margin-top:5px; - bottom: 0; - position: absolute; - } - } - a { - .linksIn(@complementary,@mediumdark,none); - &:hover .imgHolder .playPic i { - color: #fff; - } - - display:block; - .imgHolder { - .playPic { - position: absolute; - top: 33%; - width:100%; - height:45px; - display:block; - .rem(12); - text-align: center; - i { - color:rgba(255,255,255,.66); - } - } - float: left; - display: block; - overflow: hidden; - width: 40%; - margin-right: 1%; - position: relative; - @media @desktop { - width: 25%; - } - img { - border:none; - max-width:100%; - width: 100%; - height: auto; - } - .resume { - display: none; - } - } - h3.titre { - .noSpace; - .borderBox; - .rem(13); - overflow:hidden; - @media @desktop { - .rem(14); - } - } - .resume { - display:block; - color: @mediumdark !important; - .rem(12); - padding-top:10px; - } - } - } - } - } -.similar { - .thumbHolder { - .infos { - .hide; - } - } -} -.theme_list { - .noSpace; - li { - .borderBox; - .inline; - margin: 1px 0; - &:nth-child(2n){ - background: @superlight; - } - a { - .linksIn(@maincolor,@dark,none,none); - .inline; - padding: 5px; - .borderBox; - /*&:before { - .fontA("\f138"); //f0da - padding: 0 6px 0 0; - color: @black1 !important; - }*/ - } - img { - .inline; - } - b { - display: block; - padding: 5px; - .borderBox; - color: @complementary; - &:before { - .fontA("\f138"); //f0da - padding: 0 6px 0 0; - color: @complementary !important; - } - } - } -} -.paginator { - clear:both; - padding-top: 20px; - text-align: center; - span, a { - .inline; - width: 32px; - padding: 8px 0; - background: @complementary; - .radius; - .rem(14, bold); - } - .links(@dark,#fff,none,none); - span { - background: @light; - color: @dark; - } -} \ No newline at end of file diff --git a/pod_project/core/static/LILLE1/theme/binding_dark.png b/pod_project/core/static/LILLE1/theme/binding_dark.png deleted file mode 100755 index 2c69fa64..00000000 Binary files a/pod_project/core/static/LILLE1/theme/binding_dark.png and /dev/null differ diff --git a/pod_project/core/static/LILLE1/theme/logo.png b/pod_project/core/static/LILLE1/theme/logo.png deleted file mode 100755 index 9643e3a3..00000000 Binary files a/pod_project/core/static/LILLE1/theme/logo.png and /dev/null differ diff --git a/pod_project/core/static/LILLE1/theme/logo_black.png b/pod_project/core/static/LILLE1/theme/logo_black.png deleted file mode 100755 index 93c97a9e..00000000 Binary files a/pod_project/core/static/LILLE1/theme/logo_black.png and /dev/null differ diff --git a/pod_project/core/static/LILLE1/theme/logo_compact.png b/pod_project/core/static/LILLE1/theme/logo_compact.png deleted file mode 100755 index 2dd94265..00000000 Binary files a/pod_project/core/static/LILLE1/theme/logo_compact.png and /dev/null differ diff --git a/pod_project/core/static/LILLE1/theme/logo_compact2.png b/pod_project/core/static/LILLE1/theme/logo_compact2.png deleted file mode 100755 index 000bef8b..00000000 Binary files a/pod_project/core/static/LILLE1/theme/logo_compact2.png and /dev/null differ diff --git a/pod_project/core/static/LILLE1/video-js/demo.captions.vtt b/pod_project/core/static/LILLE1/video-js/demo.captions.vtt deleted file mode 100755 index e598be19..00000000 --- a/pod_project/core/static/LILLE1/video-js/demo.captions.vtt +++ /dev/null @@ -1,41 +0,0 @@ -WEBVTT - -00:00.700 --> 00:04.110 -Captions describe all relevant audio for the hearing impaired. -[ Heroic music playing for a seagull ] - -00:04.500 --> 00:05.000 -[ Splash!!! ] - -00:05.100 --> 00:06.000 -[ Sploosh!!! ] - -00:08.000 --> 00:09.225 -[ Splash...splash...splash splash splash ] - -00:10.525 --> 00:11.255 -[ Splash, Sploosh again ] - -00:13.500 --> 00:14.984 -Dolphin: eeeEEEEEeeee! - -00:14.984 --> 00:16.984 -Dolphin: Squawk! eeeEEE? - -00:25.000 --> 00:28.284 -[ A whole ton of splashes ] - -00:29.500 --> 00:31.000 -Mine. Mine. Mine. - -00:34.300 --> 00:36.000 -Shark: Chomp - -00:36.800 --> 00:37.900 -Shark: CHOMP!!! - -00:37.861 --> 00:41.193 -EEEEEEOOOOOOOOOOWHALENOISE - -00:42.593 --> 00:45.611 -[ BIG SPLASH ] \ No newline at end of file diff --git a/pod_project/core/static/LILLE1/video-js/demo.html b/pod_project/core/static/LILLE1/video-js/demo.html deleted file mode 100755 index b2b3fa44..00000000 --- a/pod_project/core/static/LILLE1/video-js/demo.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - Video.js | HTML5 Video Player - - - - - - - - - - - - - - - - - diff --git a/pod_project/core/static/LILLE1/video-js/font/vjs.eot b/pod_project/core/static/LILLE1/video-js/font/vjs.eot deleted file mode 100755 index a075c19f..00000000 Binary files a/pod_project/core/static/LILLE1/video-js/font/vjs.eot and /dev/null differ diff --git a/pod_project/core/static/LILLE1/video-js/font/vjs.svg b/pod_project/core/static/LILLE1/video-js/font/vjs.svg deleted file mode 100755 index f1af0e53..00000000 --- a/pod_project/core/static/LILLE1/video-js/font/vjs.svg +++ /dev/null @@ -1,65 +0,0 @@ - - - - -This is a custom SVG font generated by IcoMoon. - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/pod_project/core/static/LILLE1/video-js/font/vjs.ttf b/pod_project/core/static/LILLE1/video-js/font/vjs.ttf deleted file mode 100755 index eb246379..00000000 Binary files a/pod_project/core/static/LILLE1/video-js/font/vjs.ttf and /dev/null differ diff --git a/pod_project/core/static/LILLE1/video-js/font/vjs.woff b/pod_project/core/static/LILLE1/video-js/font/vjs.woff deleted file mode 100755 index c3f0f1d8..00000000 Binary files a/pod_project/core/static/LILLE1/video-js/font/vjs.woff and /dev/null differ diff --git a/pod_project/core/static/LILLE1/video-js/video-js.css b/pod_project/core/static/LILLE1/video-js/video-js.css deleted file mode 100755 index b81de376..00000000 --- a/pod_project/core/static/LILLE1/video-js/video-js.css +++ /dev/null @@ -1,770 +0,0 @@ -/*! -Video.js Default Styles (http://videojs.com) -Version 4.5.1 -Create your own skin at http://designer.videojs.com -*/ -/* SKIN -================================================================================ -The main class name for all skin-specific styles. To make your own skin, -replace all occurances of 'vjs-default-skin' with a new name. Then add your new -skin name to your video tag instead of the default skin. -e.g.