ComunicWeb/assets/css/components/calls/callWindow.css

73 lines
958 B
CSS
Raw Normal View History

2019-01-24 13:40:36 +00:00
/**
* Calls window stylesheet
*
* @author Pierre HUBERT
*/
.call-window {
background-color: white;
width: 300px;
position: fixed;
top: 100px;
right: 10px;
z-index: 100;
border: 1px black solid;
display: flex;
flex-direction: column;
2019-01-25 14:34:40 +00:00
}
.call.window.body {
flex: 1;
2019-01-24 13:40:36 +00:00
}
/**
* Toolbar
*/
.call-toolbar {
height: 20px;
background-color: #000000b3;
color: white;
display: flex;
align-items: center;
padding-left: 10px;
}
.call-toolbar > i:first-child {
margin-right: 6px;
}
.call-title {
flex: 1;
2019-01-25 14:34:40 +00:00
}
/**
* Loading message
*/
2019-01-25 18:03:00 +00:00
.loading-message-container {
2019-01-25 14:34:40 +00:00
position: absolute;
min-height: 110px;
width: 100%;
display: flex;
background: 1px #0009;
flex-direction: column;
justify-content: space-around;
text-align: center;
font-size: 150%;
color: white;
2019-01-25 18:03:00 +00:00
}
/**
* Stream target
*/
.call-window .streams-target {
display: flex;
flex-wrap: wrap;
flex-direction: row;
}
.call-window .streams-target video {
width: 149px;
2019-01-24 13:40:36 +00:00
}