/** * 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; } .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; } /** * Stream target */ .call-window .streams-target { display: flex; flex-wrap: wrap; flex-direction: row; } .call-window .streams-target video { width: 149px; }