mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 12:39:22 +00:00
60 lines
804 B
CSS
60 lines
804 B
CSS
/**
|
|
* Calls window stylesheet
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
.call-window {
|
|
background-color: white;
|
|
width: 300px;
|
|
height: 300px;
|
|
position: fixed;
|
|
top: 100px;
|
|
right: 10px;
|
|
z-index: 100;
|
|
border: 1px black solid;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.call.window.body {
|
|
flex: 1;
|
|
}
|
|
|
|
|
|
/**
|
|
* 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;
|
|
}
|
|
|
|
|
|
/**
|
|
* Loading message
|
|
*/
|
|
.loading-message-container {
|
|
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;
|
|
} |