2014-03-26 10:33:46 +00:00
|
|
|
#videospace {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
right: 0px;
|
2014-07-24 11:22:51 +00:00
|
|
|
overflow: hidden;
|
2014-03-26 10:33:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#remoteVideos {
|
|
|
|
display:block;
|
|
|
|
position:absolute;
|
|
|
|
text-align:right;
|
|
|
|
height:196px;
|
|
|
|
padding: 18px;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2014-08-22 15:37:11 +00:00
|
|
|
right: 20px;
|
2014-03-26 10:33:46 +00:00
|
|
|
width:auto;
|
|
|
|
border:1px solid transparent;
|
2014-05-11 22:41:58 +00:00
|
|
|
z-index: 5;
|
2014-09-08 15:34:56 +00:00
|
|
|
transition: bottom 2s;
|
2014-09-30 15:50:43 +00:00
|
|
|
overflow: visible !important;
|
2016-02-26 23:19:03 +00:00
|
|
|
font-size: 0pt; /*!!!Removes the gap between the local video container and the remote videos.*/
|
2014-09-08 15:34:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#remotevideos.hidden {
|
|
|
|
bottom: -196px;
|
2014-03-26 10:33:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.videocontainer {
|
|
|
|
position: relative;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2016-03-18 20:00:55 +00:00
|
|
|
text-align: center;
|
2014-03-26 10:33:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#remoteVideos .videocontainer {
|
2015-12-25 16:55:45 +00:00
|
|
|
display: none;
|
2014-10-31 11:47:12 +00:00
|
|
|
background-color: black;
|
2014-03-26 10:33:46 +00:00
|
|
|
background-size: contain;
|
2016-02-26 23:19:03 +00:00
|
|
|
border-radius:1px;
|
|
|
|
border: 1px solid #212425;
|
2014-03-26 10:33:46 +00:00
|
|
|
}
|
|
|
|
|
2014-06-12 18:35:42 +00:00
|
|
|
#remoteVideos .videocontainer.videoContainerFocused {
|
2014-03-26 10:33:46 +00:00
|
|
|
cursor: hand;
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
-webkit-transition-duration: 0.5s;
|
|
|
|
-webkit-animation-name: greyPulse;
|
|
|
|
-webkit-animation-duration: 2s;
|
|
|
|
-webkit-animation-iteration-count: 1;
|
2014-07-22 13:12:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#remoteVideos .videocontainer:hover {
|
2016-03-15 20:26:22 +00:00
|
|
|
border: 1px solid #c1c1c1;
|
2014-07-22 13:12:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#remoteVideos .videocontainer.videoContainerFocused {
|
2015-07-10 09:57:20 +00:00
|
|
|
box-shadow: inset 0 0 28px #006d91;
|
2016-02-26 23:19:03 +00:00
|
|
|
border: 1px solid #006d91;
|
2014-03-26 10:33:46 +00:00
|
|
|
}
|
|
|
|
|
2014-07-28 13:39:22 +00:00
|
|
|
#remoteVideos .videocontainer.videoContainerFocused:hover {
|
2016-03-15 20:26:22 +00:00
|
|
|
box-shadow: inset 0 0 5px #c1c1c1, 0 0 10px #c1c1c1, inset 0 0 60px #006d91;
|
|
|
|
border: 1px solid #c1c1c1;
|
2014-07-28 13:39:22 +00:00
|
|
|
}
|
|
|
|
|
2014-03-26 10:33:46 +00:00
|
|
|
#localVideoWrapper {
|
|
|
|
display:inline-block;
|
|
|
|
}
|
|
|
|
|
2015-07-10 09:57:20 +00:00
|
|
|
/* With TemasysWebRTC plugin <object/> element is used
|
|
|
|
instead of <video/> */
|
|
|
|
#remoteVideos .videocontainer>video,
|
|
|
|
#remoteVideos .videocontainer>object {
|
2015-08-25 12:17:07 +00:00
|
|
|
cursor: hand;
|
2016-02-26 23:19:03 +00:00
|
|
|
border-radius:1px;
|
2016-03-03 23:38:40 +00:00
|
|
|
object-fit: cover;
|
2016-08-04 20:56:04 +00:00
|
|
|
overflow: hidden;
|
2014-03-26 10:33:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.flipVideoX {
|
|
|
|
transform: scale(-1, 1);
|
|
|
|
-moz-transform: scale(-1, 1);
|
|
|
|
-webkit-transform: scale(-1, 1);
|
|
|
|
-o-transform: scale(-1, 1);
|
|
|
|
}
|
|
|
|
|
2015-07-10 09:57:20 +00:00
|
|
|
#localVideoWrapper>video,
|
|
|
|
#localVideoWrapper>object {
|
2015-08-25 12:17:07 +00:00
|
|
|
cursor: hand;
|
2016-02-26 23:19:03 +00:00
|
|
|
border-radius:1px !important;
|
2016-03-03 23:38:40 +00:00
|
|
|
object-fit: cover;
|
2014-03-26 10:33:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#largeVideo,
|
2015-08-18 10:26:50 +00:00
|
|
|
#largeVideoWrapper,
|
2014-03-26 10:33:46 +00:00
|
|
|
#largeVideoContainer {
|
|
|
|
overflow: hidden;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2015-08-18 10:26:50 +00:00
|
|
|
#largeVideo,
|
|
|
|
#largeVideoWrapper
|
2014-11-26 14:36:42 +00:00
|
|
|
{
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
|
2014-03-26 10:33:46 +00:00
|
|
|
#presentation,
|
2016-03-18 20:00:55 +00:00
|
|
|
#sharedVideo,
|
2014-03-26 10:33:46 +00:00
|
|
|
#etherpad,
|
|
|
|
#localVideoWrapper>video,
|
2015-07-10 09:57:20 +00:00
|
|
|
#localVideoWrapper>object,
|
2014-03-26 10:33:46 +00:00
|
|
|
#localVideoWrapper,
|
2015-08-18 10:26:50 +00:00
|
|
|
#largeVideoWrapper,
|
|
|
|
#largeVideoWrapper>video,
|
|
|
|
#largeVideoWrapper>object,
|
2015-07-10 09:57:20 +00:00
|
|
|
.videocontainer>video,
|
|
|
|
.videocontainer>object {
|
2014-03-26 10:33:46 +00:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
z-index: 1;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#etherpad,
|
|
|
|
#presentation {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#etherpad {
|
|
|
|
z-index: 0;
|
|
|
|
}
|
|
|
|
|
2015-08-05 21:56:08 +00:00
|
|
|
#toolbar_button_etherpad {
|
2014-03-26 10:33:46 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2014-05-11 22:41:58 +00:00
|
|
|
#remoteVideos .videocontainer>span.focusindicator,
|
2016-08-04 20:23:38 +00:00
|
|
|
#remoteVideos .videocontainer>div.remotevideomenu {
|
2014-03-26 10:33:46 +00:00
|
|
|
position: absolute;
|
|
|
|
color: #FFFFFF;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
padding: 5px 0px;
|
|
|
|
width: 25px;
|
|
|
|
font-size: 11pt;
|
|
|
|
text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
|
|
|
|
border: 0px;
|
|
|
|
z-index: 2;
|
2014-06-18 11:42:31 +00:00
|
|
|
text-align: center;
|
2014-03-26 10:33:46 +00:00
|
|
|
}
|
|
|
|
|
2016-08-04 20:23:38 +00:00
|
|
|
#remoteVideos .videocontainer>span.focusindicator {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#remoteVideos .videocontainer>div.remotevideomenu {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2014-03-26 10:33:46 +00:00
|
|
|
.videocontainer>span.displayname,
|
|
|
|
.videocontainer>input.displayname {
|
2014-06-12 18:35:42 +00:00
|
|
|
display: none;
|
2014-03-26 10:33:46 +00:00
|
|
|
position: absolute;
|
|
|
|
color: #FFFFFF;
|
2014-06-12 18:35:42 +00:00
|
|
|
background: rgba(0,0,0,.7);
|
|
|
|
text-align: center;
|
2014-03-26 10:33:46 +00:00
|
|
|
text-overflow: ellipsis;
|
2014-06-12 18:35:42 +00:00
|
|
|
width: 70%;
|
|
|
|
height: 20%;
|
|
|
|
left: 15%;
|
|
|
|
top: 40%;
|
|
|
|
padding: 5px;
|
|
|
|
font-size: 11pt;
|
2014-03-26 10:33:46 +00:00
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
z-index: 2;
|
2016-02-26 23:19:03 +00:00
|
|
|
border-radius:3px;
|
2014-03-26 10:33:46 +00:00
|
|
|
}
|
|
|
|
|
2014-08-08 13:25:24 +00:00
|
|
|
.videocontainer>span.status {
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
color: #FFFFFF;
|
|
|
|
background: rgba(0,0,0,.7);
|
|
|
|
text-align: center;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
width: 70%;
|
|
|
|
height: 15%;
|
|
|
|
left: 15%;
|
|
|
|
bottom: 2%;
|
|
|
|
padding: 5px;
|
|
|
|
font-size: 10pt;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
z-index: 2;
|
2016-02-26 23:19:03 +00:00
|
|
|
border-radius:3px;
|
2014-08-08 13:25:24 +00:00
|
|
|
}
|
|
|
|
|
2014-10-16 15:11:26 +00:00
|
|
|
.connectionindicator
|
|
|
|
{
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
top: 7px;
|
|
|
|
right: 0;
|
|
|
|
padding: 0px 5px;
|
|
|
|
z-index: 3;
|
|
|
|
width: 18px;
|
|
|
|
height: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.connection.connection_empty
|
|
|
|
{
|
|
|
|
color: #8B8B8B;/*#FFFFFF*/
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.connection.connection_full
|
|
|
|
{
|
|
|
|
color: #FFFFFF;/*#15A1ED*/
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.connection
|
|
|
|
{
|
|
|
|
position: absolute;
|
|
|
|
left: 0px;
|
|
|
|
top: 0px;
|
|
|
|
font-size: 8pt;
|
|
|
|
border: 0px;
|
|
|
|
width: 18px;
|
|
|
|
height: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.connection_info
|
2014-10-17 10:00:35 +00:00
|
|
|
{
|
|
|
|
float: left;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.connection_info > table
|
|
|
|
{
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.connection_info, .connection_info > table
|
2014-10-16 15:11:26 +00:00
|
|
|
{
|
|
|
|
text-align: left;
|
|
|
|
font-size: 11px;
|
2014-10-17 10:00:35 +00:00
|
|
|
color: #ffffff;
|
2014-10-16 15:11:26 +00:00
|
|
|
}
|
|
|
|
|
2014-08-08 13:25:24 +00:00
|
|
|
#localVideoContainer>span.status:hover,
|
2014-03-26 10:33:46 +00:00
|
|
|
#localVideoContainer>span.displayname:hover {
|
|
|
|
cursor: text;
|
|
|
|
}
|
|
|
|
|
2014-08-08 13:25:24 +00:00
|
|
|
.videocontainer>span.status,
|
2014-03-31 12:49:33 +00:00
|
|
|
.videocontainer>span.displayname {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2014-06-12 18:35:42 +00:00
|
|
|
.videocontainer>input.displayname {
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
2014-03-31 12:49:33 +00:00
|
|
|
#localDisplayName {
|
|
|
|
pointer-events: auto !important;
|
|
|
|
}
|
|
|
|
|
2014-08-08 13:25:24 +00:00
|
|
|
.videocontainer>a.status,
|
2014-03-26 10:33:46 +00:00
|
|
|
.videocontainer>a.displayname {
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
color: #FFFFFF;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
padding: 3px 5px;
|
|
|
|
font-size: 9pt;
|
|
|
|
cursor: pointer;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
2014-04-07 10:16:49 +00:00
|
|
|
.videocontainer>span.audioMuted {
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
color: #FFFFFF;
|
|
|
|
top: 0;
|
|
|
|
padding: 8px 5px;
|
|
|
|
width: 25px;
|
|
|
|
font-size: 8pt;
|
|
|
|
text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
|
|
|
|
border: 0px;
|
|
|
|
z-index: 3;
|
2014-06-18 11:42:31 +00:00
|
|
|
text-align: center;
|
2014-04-07 10:16:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.videocontainer>span.videoMuted {
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
color: #FFFFFF;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
padding: 8px 5px;
|
|
|
|
width: 25px;
|
|
|
|
font-size: 8pt;
|
|
|
|
text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
|
|
|
|
border: 0px;
|
|
|
|
z-index: 3;
|
|
|
|
}
|
|
|
|
|
2016-06-20 21:13:17 +00:00
|
|
|
.videocontainer>span.indicator {
|
2015-11-23 23:30:09 +00:00
|
|
|
bottom: 0px;
|
|
|
|
left: 0px;
|
|
|
|
width: 25px;
|
|
|
|
height: 25px;
|
|
|
|
z-index: 3;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 50%;
|
2016-06-23 19:48:38 +00:00
|
|
|
background: #21B9FC;
|
2015-11-23 23:30:09 +00:00
|
|
|
margin: 5px;
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
color: #FFFFFF;
|
|
|
|
font-size: 11pt;
|
|
|
|
border: 0px;
|
|
|
|
}
|
|
|
|
|
2016-06-20 21:13:17 +00:00
|
|
|
#indicatoricon {
|
2015-11-23 23:30:09 +00:00
|
|
|
padding-top: 5px;
|
|
|
|
}
|
|
|
|
|
2014-03-26 10:33:46 +00:00
|
|
|
#reloadPresentation {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
color: #FFFFFF;
|
|
|
|
top: 0;
|
|
|
|
right:0;
|
|
|
|
padding: 10px 10px;
|
|
|
|
font-size: 11pt;
|
|
|
|
cursor: pointer;
|
|
|
|
background: rgba(0, 0, 0, 0.3);
|
|
|
|
border-radius: 5px;
|
|
|
|
background-clip: padding-box;
|
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
-webkit-background-clip: padding-box;
|
|
|
|
z-index: 20; /*The reload button should appear on top of the header!*/
|
|
|
|
}
|
|
|
|
|
|
|
|
#header{
|
|
|
|
display:none;
|
|
|
|
position:absolute;
|
|
|
|
text-align:center;
|
|
|
|
top:0;
|
|
|
|
left:0;
|
|
|
|
right:0;
|
|
|
|
z-index:10;
|
2014-08-22 09:21:02 +00:00
|
|
|
pointer-events: none;
|
2016-04-05 19:14:30 +00:00
|
|
|
min-height: 100px;
|
2014-03-26 10:33:46 +00:00
|
|
|
}
|
|
|
|
|
2014-06-20 09:00:49 +00:00
|
|
|
#subject {
|
|
|
|
position: relative;
|
|
|
|
z-index: 3;
|
|
|
|
width: auto;
|
|
|
|
padding: 5px;
|
|
|
|
margin-left: 40%;
|
|
|
|
margin-right: 40%;
|
|
|
|
text-align: center;
|
|
|
|
background: linear-gradient(to bottom, rgba(255,255,255,.85) , rgba(255,255,255,.35));
|
2015-07-10 09:57:20 +00:00
|
|
|
box-shadow: 0 0 2px #000000, 0 0 10px #000000;
|
2014-06-20 09:00:49 +00:00
|
|
|
border-bottom-left-radius: 12px;
|
|
|
|
border-bottom-right-radius: 12px;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2014-07-22 13:12:48 +00:00
|
|
|
.audiolevel {
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 0;
|
2016-02-26 23:19:03 +00:00
|
|
|
border-radius:1px;
|
2014-11-28 14:02:48 +00:00
|
|
|
pointer-events: none;
|
2014-07-22 13:12:48 +00:00
|
|
|
}
|
2014-08-22 15:37:11 +00:00
|
|
|
|
2016-01-12 00:14:01 +00:00
|
|
|
#dominantSpeaker {
|
2014-12-10 09:52:40 +00:00
|
|
|
visibility: hidden;
|
2016-03-03 23:38:40 +00:00
|
|
|
width: 300px;
|
|
|
|
height: 300px;
|
2014-12-12 09:32:16 +00:00
|
|
|
margin: auto;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2016-01-12 00:14:01 +00:00
|
|
|
#dominantSpeakerAudioLevel {
|
2014-12-10 09:52:40 +00:00
|
|
|
position: absolute;
|
2014-12-12 09:32:16 +00:00
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
2016-02-05 17:32:09 +00:00
|
|
|
z-index: 2;
|
2014-12-12 09:32:16 +00:00
|
|
|
visibility: inherit;
|
2014-12-10 09:52:40 +00:00
|
|
|
}
|
|
|
|
|
2014-08-22 15:37:11 +00:00
|
|
|
#mixedstream {
|
|
|
|
display:none !important;
|
|
|
|
}
|
2014-10-31 11:47:12 +00:00
|
|
|
|
2016-01-12 00:14:01 +00:00
|
|
|
#dominantSpeakerAvatar {
|
2016-03-03 23:38:40 +00:00
|
|
|
width: 200px;
|
|
|
|
height: 200px;
|
|
|
|
top: 50px;
|
2014-10-31 11:47:12 +00:00
|
|
|
margin: auto;
|
|
|
|
position: relative;
|
2016-03-03 23:38:40 +00:00
|
|
|
border-radius: 100px;
|
2016-02-05 17:32:09 +00:00
|
|
|
z-index: 3;
|
2014-12-12 09:32:16 +00:00
|
|
|
visibility: inherit;
|
2016-03-15 20:26:22 +00:00
|
|
|
background-color: #000000;
|
2014-10-31 11:47:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.userAvatar {
|
|
|
|
height: 100%;
|
|
|
|
position: absolute;
|
2016-03-03 23:38:40 +00:00
|
|
|
left: 0;
|
|
|
|
border-radius: 2px;
|
2014-10-31 11:47:12 +00:00
|
|
|
}
|
2015-03-27 09:36:39 +00:00
|
|
|
|
2016-03-18 20:00:55 +00:00
|
|
|
.sharedVideoAvatar {
|
|
|
|
height: 100%;
|
2016-03-24 19:49:26 +00:00
|
|
|
width: 100%;
|
|
|
|
object-fit: cover;
|
2016-03-18 20:00:55 +00:00
|
|
|
}
|
|
|
|
|
2015-03-27 09:36:39 +00:00
|
|
|
.noMic {
|
|
|
|
position: absolute;
|
|
|
|
border-radius: 8px;
|
|
|
|
z-index: 1;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-image: url("../images/noMic.png");
|
|
|
|
background-color: #000;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.noVideo {
|
|
|
|
position: absolute;
|
|
|
|
border-radius: 8px;
|
|
|
|
z-index: 1;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-image: url("../images/noVideo.png");
|
|
|
|
background-color: #000;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
}
|
|
|
|
|
2015-08-06 03:18:45 +00:00
|
|
|
.videoMessageFilter {
|
|
|
|
-webkit-filter: grayscale(.5) opacity(0.8);
|
|
|
|
filter: grayscale(.5) opacity(0.8);
|
|
|
|
}
|
|
|
|
|
2015-08-03 15:58:22 +00:00
|
|
|
.videoProblemFilter {
|
|
|
|
-webkit-filter: blur(10px) grayscale(.5) opacity(0.8);
|
|
|
|
filter: blur(10px) grayscale(.5) opacity(0.8);
|
|
|
|
}
|
|
|
|
|
|
|
|
#videoConnectionMessage {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
top:50%;
|
2016-06-13 21:11:44 +00:00
|
|
|
z-index: 1011;
|
2015-08-03 15:58:22 +00:00
|
|
|
font-weight: 600;
|
|
|
|
font-size: 14px;
|
|
|
|
text-align: center;
|
|
|
|
color: #FFF;
|
|
|
|
opacity: .80;
|
|
|
|
text-shadow: 0px 0px 1px rgba(0,0,0,0.3),
|
|
|
|
0px 1px 1px rgba(0,0,0,0.3),
|
|
|
|
1px 0px 1px rgba(0,0,0,0.3),
|
|
|
|
0px 0px 1px rgba(0,0,0,0.3);
|
2016-03-15 20:26:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#videoResolutionLabel {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
top: 5px;
|
|
|
|
right: 5px;
|
|
|
|
background: rgba(0,0,0,.5);
|
|
|
|
padding: 10px;
|
|
|
|
color: rgba(255,255,255,.5);
|
2016-06-13 21:11:44 +00:00
|
|
|
z-index: 1011;
|
2016-03-29 17:13:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.centeredVideoLabel {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 45%;
|
|
|
|
top: auto;
|
|
|
|
right: auto;
|
|
|
|
left: auto;
|
|
|
|
line-height: 28px;
|
|
|
|
height: 28px;
|
|
|
|
width: auto;
|
|
|
|
padding: 5px;
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
|
|
|
background: rgba(0,0,0,.5);
|
|
|
|
color: #FFF;
|
2016-06-13 21:11:44 +00:00
|
|
|
z-index: 1011;
|
2016-03-31 22:35:10 +00:00
|
|
|
border-radius: 2px;
|
2016-03-29 17:13:54 +00:00
|
|
|
-webkit-transition: all 2s 2s linear;
|
|
|
|
transition: all 2s 2s linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
.moveToCorner {
|
|
|
|
top: 5px;
|
2016-03-29 21:07:01 +00:00
|
|
|
right: 50px; /*leave free space for the HD label*/
|
2016-03-29 17:13:54 +00:00
|
|
|
margin-right: 0px;
|
|
|
|
margin-left: auto;
|
|
|
|
background: rgba(0,0,0,.3);
|
|
|
|
color: rgba(255,255,255,.5);
|
2016-05-01 18:35:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.hidden {
|
2016-06-13 21:11:44 +00:00
|
|
|
}
|