2017-01-21 14:01:27 +01:00
|
|
|
.button-group
|
|
|
|
|
{
|
|
|
|
|
margin: 50px 0 30px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button
|
|
|
|
|
{
|
|
|
|
|
color: #000;
|
|
|
|
|
}
|
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-21 20:21:49 +01:00
|
|
|
width:600px;
|
|
|
|
|
background-color:#000;
|
2017-01-13 18:12:02 +01:00
|
|
|
opacity:.8;
|
|
|
|
|
position:fixed;
|
2017-01-21 20:21:49 +01:00
|
|
|
z-index:10000;
|
|
|
|
|
right:50px;
|
|
|
|
|
bottom:50px;
|
2017-01-13 18:12:02 +01:00
|
|
|
display:none;
|
|
|
|
|
padding:30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#videotext .video-title
|
|
|
|
|
{
|
2017-01-21 20:21:49 +01:00
|
|
|
color:#fff;
|
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
|
|
|
|
|
{
|
2017-01-21 20:21:49 +01:00
|
|
|
display:block;
|
|
|
|
|
position:absolute;
|
|
|
|
|
top:70px;
|
|
|
|
|
left:90px;
|
|
|
|
|
z-index:1000000;
|
2017-01-13 18:12:02 +01:00
|
|
|
width:60px;
|
|
|
|
|
display:none;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#videoplayer
|
|
|
|
|
{
|
|
|
|
|
display:block;
|
|
|
|
|
position:fixed;
|
2017-01-21 20:21:49 +01:00
|
|
|
top:100px;
|
|
|
|
|
left:40px;
|
|
|
|
|
z-index:1000000;
|
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-21 20:21:49 +01:00
|
|
|
top:130px;
|
|
|
|
|
right:30px;
|
2017-01-13 18:12:02 +01:00
|
|
|
background-image:url("/images/close-button-large.png");
|
|
|
|
|
background-size:cover;
|
2017-01-21 14:01:27 +01:00
|
|
|
}
|