2013-12-16 11:22:23 +00:00
|
|
|
html, body{
|
|
|
|
margin:0px;
|
|
|
|
height:100%;
|
|
|
|
color: #424242;
|
2014-02-11 14:05:17 +00:00
|
|
|
font-family:'Helvetica Neue', Helvetica, sans-serif;
|
2014-02-18 19:11:27 +00:00
|
|
|
font-weight: 400;
|
2013-12-16 11:22:23 +00:00
|
|
|
background: #e9e9e9;
|
2014-02-05 13:01:22 +00:00
|
|
|
overflow-x: hidden;
|
2013-12-16 11:22:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#videospace {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 39px;
|
|
|
|
left: 0px;
|
|
|
|
right: 0px;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2013-12-23 16:49:29 +00:00
|
|
|
.videocontainer {
|
|
|
|
position: relative;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
2014-02-12 22:24:26 +00:00
|
|
|
#presentation, #etherpad, .videocontainer>video {
|
2013-12-23 16:49:29 +00:00
|
|
|
position: absolute;
|
|
|
|
left: 0px;
|
|
|
|
top: 0px;
|
2014-01-24 10:24:18 +00:00
|
|
|
z-index: 1;
|
2013-12-23 16:49:29 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2014-01-24 10:24:18 +00:00
|
|
|
|
2014-02-13 12:08:56 +00:00
|
|
|
#etherpad {
|
|
|
|
z-index: 0;
|
|
|
|
}
|
|
|
|
|
2014-02-19 14:32:22 +00:00
|
|
|
#etherpadButton {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2014-01-14 18:34:36 +00:00
|
|
|
.videocontainer>span {
|
|
|
|
display: none; /* enable when you want nicks to be shown */
|
|
|
|
position: absolute;
|
|
|
|
left: 0px;
|
|
|
|
bottom: -20px;
|
|
|
|
z-index: 0;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 10pt;
|
|
|
|
}
|
2013-12-23 16:49:29 +00:00
|
|
|
|
2014-01-03 17:21:36 +00:00
|
|
|
#localVideo {
|
|
|
|
-moz-transform: scaleX(-1);
|
|
|
|
-webkit-transform: scaleX(-1);
|
|
|
|
-o-transform: scaleX(-1);
|
|
|
|
transform: scaleX(-1);
|
|
|
|
}
|
|
|
|
|
2013-12-16 11:22:23 +00:00
|
|
|
#remoteVideos {
|
|
|
|
display:block;
|
|
|
|
position:relative;
|
|
|
|
text-align:center;
|
|
|
|
height:196px;
|
2014-02-12 22:24:26 +00:00
|
|
|
padding: 5px 0px;
|
2013-12-16 11:22:23 +00:00
|
|
|
width:auto;
|
|
|
|
overflow: hidden;
|
|
|
|
border:1px solid transparent;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
2014-01-14 18:34:36 +00:00
|
|
|
#remoteVideos>span {
|
2013-12-23 16:49:29 +00:00
|
|
|
display: inline-block;
|
2013-12-16 11:22:23 +00:00
|
|
|
z-index:0;
|
|
|
|
border:1px solid #FFFFFF;
|
2014-01-23 13:44:53 +00:00
|
|
|
background-image:url(../images/avatar1.png);
|
|
|
|
background-size: contain;
|
2013-12-16 11:22:23 +00:00
|
|
|
}
|
|
|
|
|
2013-12-23 16:49:29 +00:00
|
|
|
#remoteVideos>span:hover {
|
2013-12-16 11:22:23 +00:00
|
|
|
cursor: pointer;
|
|
|
|
cursor: hand;
|
|
|
|
transform:scale(1.08, 1.08);
|
|
|
|
-webkit-transform:scale(1.08, 1.08);
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
-webkit-transition-duration: 0.5s;
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
-webkit-animation-name: greyPulse;
|
|
|
|
-webkit-animation-duration: 2s;
|
|
|
|
-webkit-animation-iteration-count: 1;
|
|
|
|
-webkit-box-shadow: 0 0 18px #515151;
|
|
|
|
border:1px solid #FFFFFF;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
#chatspace {
|
2014-02-05 13:01:22 +00:00
|
|
|
display:none;
|
2013-12-16 11:22:23 +00:00
|
|
|
position:absolute;
|
|
|
|
float: right;
|
|
|
|
top: 40px;
|
|
|
|
bottom: 0px;
|
|
|
|
right: 0px;
|
2014-02-05 13:01:22 +00:00
|
|
|
width: 20%;
|
|
|
|
max-width: 200px;
|
2013-12-16 11:22:23 +00:00
|
|
|
overflow: hidden;
|
2014-02-08 20:24:13 +00:00
|
|
|
/* background-color:#dfebf1;*/
|
|
|
|
background-color:#FFFFFF;
|
2013-12-16 11:22:23 +00:00
|
|
|
border-left:1px solid #424242;
|
|
|
|
}
|
|
|
|
|
|
|
|
#chatconversation {
|
2014-02-05 13:01:22 +00:00
|
|
|
position: relative;
|
|
|
|
top: 5px;
|
|
|
|
padding: 5px;
|
|
|
|
text-align: left;
|
|
|
|
line-height: 20px;
|
|
|
|
font-size: 10pt;
|
|
|
|
width: 100%;
|
|
|
|
height: 95%;
|
|
|
|
overflow-y: scroll;
|
|
|
|
overflow-x: hidden;
|
|
|
|
word-wrap: break-word;
|
|
|
|
visibility: hidden;
|
2013-12-16 11:22:23 +00:00
|
|
|
}
|
|
|
|
|
2013-12-16 14:11:23 +00:00
|
|
|
.localuser {
|
2013-12-16 11:22:23 +00:00
|
|
|
color: #087dba;
|
|
|
|
}
|
|
|
|
|
2013-12-16 14:11:23 +00:00
|
|
|
.remoteuser {
|
2013-12-16 11:22:23 +00:00
|
|
|
color: #424242;
|
|
|
|
}
|
|
|
|
|
|
|
|
#usermsg {
|
2014-02-05 13:01:22 +00:00
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 5%;
|
|
|
|
padding: 5px;
|
2013-12-16 11:22:23 +00:00
|
|
|
z-index: 5;
|
|
|
|
max-height:150px;
|
2014-02-05 13:01:22 +00:00
|
|
|
min-height:50px;
|
|
|
|
visibility:hidden;
|
|
|
|
border: 0px none;
|
|
|
|
border-top: 1px solid #cccccc;
|
|
|
|
background: #FFFFFF;
|
|
|
|
box-shadow: none;
|
|
|
|
border-radius:0;
|
|
|
|
font-size: 10pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
#usermsg: hover {
|
|
|
|
border: 0px none;
|
|
|
|
border-top: 1px solid #cccccc;
|
|
|
|
box-shadow: none;
|
2013-12-16 11:22:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#nickname {
|
2014-02-05 13:01:22 +00:00
|
|
|
position: absolute;
|
|
|
|
text-align: center;
|
2013-12-16 11:22:23 +00:00
|
|
|
color: #9d9d9d;
|
|
|
|
font-size: 18;
|
|
|
|
top: 100px;
|
|
|
|
left: 5px;
|
|
|
|
right: 5px;
|
|
|
|
width: 95%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#nickinput {
|
|
|
|
margin-top: 20px;
|
|
|
|
font-size: 14;
|
|
|
|
}
|
|
|
|
|
2013-12-16 14:11:23 +00:00
|
|
|
#spacer {
|
2013-12-16 11:22:23 +00:00
|
|
|
height:5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#settings {
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#nowebrtc {
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
|
2013-12-16 14:11:23 +00:00
|
|
|
#header{
|
|
|
|
display:block;
|
2013-12-16 11:22:23 +00:00
|
|
|
height:39px;
|
|
|
|
text-align:center;
|
2014-02-05 13:01:22 +00:00
|
|
|
background-color: #2591e5;
|
2013-12-16 11:22:23 +00:00
|
|
|
}
|
|
|
|
|
2013-12-16 14:11:23 +00:00
|
|
|
#left {
|
2014-02-18 19:11:27 +00:00
|
|
|
display:block;
|
2013-12-16 11:22:23 +00:00
|
|
|
position: absolute;
|
2014-02-18 19:11:27 +00:00
|
|
|
left: 0px;
|
2013-12-16 11:22:23 +00:00
|
|
|
top: 0px;
|
|
|
|
width: 100px;
|
|
|
|
height: 39px;
|
2014-02-18 19:11:27 +00:00
|
|
|
background-image:url(../images/left1.png);
|
|
|
|
background-repeat:no-repeat;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2013-12-16 11:22:23 +00:00
|
|
|
}
|
|
|
|
|
2013-12-16 14:11:23 +00:00
|
|
|
#leftlogo {
|
2013-12-16 11:22:23 +00:00
|
|
|
position:absolute;
|
|
|
|
top: 5px;
|
|
|
|
left: 15px;
|
|
|
|
background-image:url(../images/jitsilogo.png);
|
|
|
|
background-repeat:no-repeat;
|
|
|
|
height: 31px;
|
|
|
|
width: 68px;
|
|
|
|
z-index:1;
|
|
|
|
}
|
|
|
|
|
2013-12-18 14:33:51 +00:00
|
|
|
#toolbar {
|
2013-12-16 11:22:23 +00:00
|
|
|
display:block;
|
|
|
|
position:relative;
|
|
|
|
height:39px;
|
|
|
|
width:auto;
|
|
|
|
overflow: hidden;
|
|
|
|
z-index:0;
|
2013-12-18 14:33:51 +00:00
|
|
|
visibility: hidden;
|
2013-12-16 11:22:23 +00:00
|
|
|
}
|
|
|
|
|
2014-01-24 10:24:18 +00:00
|
|
|
#settingsButton {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2014-02-18 19:11:27 +00:00
|
|
|
.toolbar_span {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2013-12-16 11:22:23 +00:00
|
|
|
.button {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
color: #FFFFFF;
|
|
|
|
top: 0;
|
|
|
|
padding: 10px 0px;
|
|
|
|
width: 39px;
|
|
|
|
cursor: pointer;
|
2013-12-16 14:11:23 +00:00
|
|
|
font-size: 11pt;
|
2013-12-16 11:22:23 +00:00
|
|
|
text-align: center;
|
|
|
|
text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
|
2014-02-18 19:11:27 +00:00
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar_span>span {
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
font-size: 7pt;
|
|
|
|
color: #ffffff;
|
|
|
|
text-align:center;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
#chat {
|
|
|
|
font-size:1.65em;
|
|
|
|
-webkit-transition: all .5s ease-in-out;;
|
|
|
|
-moz-transition: all .5s ease-in-out;;
|
|
|
|
transition: all .5s ease-in-out;;
|
|
|
|
}
|
|
|
|
|
|
|
|
#chat.active {
|
|
|
|
-webkit-text-shadow: 0 0 10px #ffffff;
|
|
|
|
-moz-text-shadow: 0 0 10px #ffffff;
|
|
|
|
text-shadow: 0 0 10px #ffffff;
|
2014-02-19 14:32:22 +00:00
|
|
|
/* -webkit-transform: scale(1.1); */
|
2013-12-16 11:22:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a.button:hover {
|
|
|
|
top: 0;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-fa-video-camera, .fa-microphone-slash {
|
|
|
|
color: #636363;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fade_line {
|
|
|
|
height: 1px;
|
|
|
|
background: black;
|
|
|
|
background: -webkit-gradient(linear, 0 0, 100% 0, from(#e9e9e9), to(#e9e9e9), color-stop(50%, black));
|
|
|
|
}
|
|
|
|
|
|
|
|
.header_button_separator {
|
|
|
|
display: inline-block;
|
|
|
|
position:relative;
|
|
|
|
top: 7;
|
|
|
|
width: 1px;
|
|
|
|
height: 25px;
|
|
|
|
background: white;
|
|
|
|
background: -webkit-gradient(linear, 0 0, 0 100%, from(#087dba), to(#087dba), color-stop(50%, white));
|
|
|
|
}
|
|
|
|
|
2013-12-16 14:11:23 +00:00
|
|
|
#right {
|
2014-02-18 19:11:27 +00:00
|
|
|
display:block;
|
2013-12-16 11:22:23 +00:00
|
|
|
position:absolute;
|
|
|
|
right: 0px;
|
|
|
|
top: 0px;
|
2014-02-18 19:11:27 +00:00
|
|
|
background-image:url(../images/right1.png);
|
|
|
|
background-repeat:no-repeat;
|
|
|
|
margin:0;
|
|
|
|
padding:0;
|
|
|
|
width:100px;
|
2013-12-16 11:22:23 +00:00
|
|
|
height:39px;
|
|
|
|
}
|
2013-12-16 14:11:23 +00:00
|
|
|
|
|
|
|
#rightlogo {
|
2013-12-16 11:22:23 +00:00
|
|
|
position:absolute;
|
|
|
|
top: 6px;
|
|
|
|
right: 15px;
|
|
|
|
background-image:url(../images/estoslogo.png);
|
|
|
|
background-repeat:no-repeat;
|
|
|
|
height: 25px;
|
|
|
|
width: 62px;
|
|
|
|
z-index:1;
|
|
|
|
}
|
|
|
|
|
2014-01-24 10:24:18 +00:00
|
|
|
input[type='text'], textarea {
|
2013-12-16 11:22:23 +00:00
|
|
|
display: inline-block;
|
|
|
|
font-size: 14px;
|
|
|
|
padding: 5px;
|
|
|
|
background: #f3f3f3;
|
|
|
|
border-radius: 3px;
|
|
|
|
font-weight: 100;
|
|
|
|
line-height: 20px;
|
|
|
|
height: 40px;
|
|
|
|
color: #333;
|
|
|
|
text-align: left;
|
|
|
|
border:1px solid #ACD8F0;
|
|
|
|
outline: none; /* removes the default outline */
|
|
|
|
resize: none; /* prevents the user-resizing, adjust to taste */
|
|
|
|
}
|
|
|
|
|
2014-01-24 10:24:18 +00:00
|
|
|
input[type='text'], textarea:focus {
|
2013-12-16 11:22:23 +00:00
|
|
|
box-shadow: inset 0 0 3px 2px #ACD8F0; /* provides a more style-able
|
|
|
|
replacement to the outline */
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
overflow: hidden;
|
|
|
|
word-wrap: break-word;
|
|
|
|
resize: horizontal;
|
|
|
|
}
|
|
|
|
|
|
|
|
button.no-icon {
|
|
|
|
padding: 0 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
border: none;
|
|
|
|
height: 35px;
|
|
|
|
padding: 0 1em 0 2em;
|
|
|
|
position: relative;
|
|
|
|
border-radius: 3px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #fff;
|
|
|
|
line-height: 35px;
|
|
|
|
background: #2c8ad2;
|
|
|
|
}
|
|
|
|
|
|
|
|
button, input, select, textarea {
|
|
|
|
font-size: 100%;
|
|
|
|
margin: 0;
|
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
|
|
|
|
|
|
|
button, input[type="button"], input[type="reset"], input[type="submit"] {
|
|
|
|
cursor: pointer;
|
|
|
|
-webkit-appearance: button;
|
|
|
|
}
|
|
|
|
|
|
|
|
form {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2014-01-03 16:41:50 +00:00
|
|
|
#downloadlog {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 5;
|
|
|
|
left: 5;
|
|
|
|
overflow: visible;
|
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
|
2014-01-15 09:29:27 +00:00
|
|
|
.videocontainer>span.focusindicator {
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
color: #FFFFFF;
|
|
|
|
top: 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;
|
2014-01-24 10:24:18 +00:00
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
2014-02-11 14:05:17 +00:00
|
|
|
.videocontainer>span.displayname,
|
|
|
|
.videocontainer>input.displayname {
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
background: -webkit-linear-gradient(left, rgba(0,0,0,.7), rgba(0,0,0,0));
|
|
|
|
color: #b7b7b7;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
padding: 3px 5px;
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
max-height: 18px;
|
|
|
|
font-size: 9pt;
|
|
|
|
text-align: left;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
z-index: 2;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
#localVideoContainer>span.displayname:hover {
|
|
|
|
cursor: text;
|
|
|
|
}
|
|
|
|
|
|
|
|
.videocontainer>a.displayname {
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
color: #b7b7b7;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
padding: 3px 5px;
|
|
|
|
font-size: 9pt;
|
|
|
|
cursor: pointer;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
2014-01-24 10:24:18 +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;
|
2014-02-12 22:24:26 +00:00
|
|
|
z-index: 3;
|
2014-01-15 09:29:27 +00:00
|
|
|
}
|