2017-01-13 18:12:02 +01:00
|
|
|
|
|
|
|
|
#video-roster {
|
|
|
|
|
background-color:#000;
|
|
|
|
|
margin:0;
|
|
|
|
|
padding:0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.videobox
|
|
|
|
|
{
|
|
|
|
|
display:block;
|
|
|
|
|
float:left;
|
|
|
|
|
width:240px;
|
|
|
|
|
height:180px;
|
|
|
|
|
margin-top:4px;
|
|
|
|
|
margin-left:2px;
|
|
|
|
|
margin-right:2px;
|
|
|
|
|
opacity:.5;
|
|
|
|
|
text-align:center;
|
|
|
|
|
padding:20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.videobox:hover
|
|
|
|
|
{
|
|
|
|
|
opacity:1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.videobox .video-title
|
|
|
|
|
{
|
|
|
|
|
color:#fff;
|
|
|
|
|
font-size:1.1em;
|
|
|
|
|
text-align:left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.videobox .video-description, .videobox .tags
|
|
|
|
|
{
|
|
|
|
|
display:none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#videotext
|
|
|
|
|
{
|
2017-01-22 18:36:33 +01:00
|
|
|
width:40%;
|
|
|
|
|
background-color:#fff;
|
2017-01-13 18:12:02 +01:00
|
|
|
opacity:.8;
|
|
|
|
|
position:fixed;
|
2017-01-22 18:36:33 +01:00
|
|
|
z-index:100;
|
|
|
|
|
right:20px;
|
|
|
|
|
top:20px;
|
2017-01-13 18:12:02 +01:00
|
|
|
display:none;
|
|
|
|
|
padding:30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#videotext .video-title
|
|
|
|
|
{
|
2017-01-22 18:36:33 +01:00
|
|
|
color:#000;
|
2017-01-13 18:12:02 +01:00
|
|
|
font-size: 1.7em;
|
|
|
|
|
background-color:none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#videotext .tags
|
|
|
|
|
{
|
|
|
|
|
font-weight:lighter;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#videotext .video-description
|
|
|
|
|
{
|
|
|
|
|
display:block;
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.playbutton
|
|
|
|
|
{
|
|
|
|
|
width:60px;
|
2017-01-22 18:36:33 +01:00
|
|
|
margin-top:30px;
|
2017-01-13 18:12:02 +01:00
|
|
|
display:none;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#videoplayer
|
|
|
|
|
{
|
|
|
|
|
display:block;
|
|
|
|
|
position:fixed;
|
2017-01-22 18:36:33 +01:00
|
|
|
z-index:1000;
|
2017-01-13 18:12:02 +01:00
|
|
|
width:100%;
|
|
|
|
|
height:100%;
|
|
|
|
|
display:none;
|
|
|
|
|
background:#000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#player
|
|
|
|
|
{
|
|
|
|
|
display:block;
|
|
|
|
|
width:80%;
|
|
|
|
|
height:80%;
|
|
|
|
|
margin:5% auto;
|
|
|
|
|
background:#000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#close-button
|
|
|
|
|
{
|
|
|
|
|
position:fixed;
|
|
|
|
|
z-index:1001;
|
|
|
|
|
display:block;
|
|
|
|
|
width:50px;
|
|
|
|
|
height:50px;
|
2017-01-22 18:36:33 +01:00
|
|
|
top:0;
|
|
|
|
|
right:0;
|
2017-01-13 18:12:02 +01:00
|
|
|
background-image:url("/images/close-button-large.png");
|
|
|
|
|
background-size:cover;
|
2017-01-22 18:36:33 +01:00
|
|
|
}
|