mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 12:39:22 +00:00
33 lines
518 B
CSS
33 lines
518 B
CSS
|
/**
|
||
|
* Ring screen stylesheet
|
||
|
*
|
||
|
* @author Pierre HUBERT
|
||
|
*/
|
||
|
|
||
|
.ring-call-container {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
position: fixed;
|
||
|
top: 0px;
|
||
|
left: 0px;
|
||
|
background-color: #011932e6;
|
||
|
z-index: 1030;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.call-message-box {
|
||
|
background-color: #fff6;
|
||
|
color: white;
|
||
|
padding: 10px;
|
||
|
border-radius: 5px;
|
||
|
min-width: 200px;
|
||
|
text-align: center;
|
||
|
font-size: 150%;
|
||
|
}
|
||
|
|
||
|
.ring-call-container .response-buttons {
|
||
|
display: flex;
|
||
|
justify-content: space-around;
|
||
|
}
|