mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-03-31 03:16:05 +00:00
42 lines
759 B
CSS
42 lines
759 B
CSS
html,
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
background-color: black;
|
|
}
|
|
|
|
#remote-video-stream {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
#local-video-stream {
|
|
position: absolute;
|
|
width: 30%;
|
|
max-width: 30%;
|
|
object-fit: cover;
|
|
margin: 16px;
|
|
border-radius: 16px;
|
|
top: 0;
|
|
right: 0;
|
|
}
|
|
|
|
*::-webkit-media-controls {
|
|
display: none !important;
|
|
-webkit-appearance: none !important;
|
|
}
|
|
*::-webkit-media-controls-panel {
|
|
display: none !important;
|
|
-webkit-appearance: none !important;
|
|
}
|
|
*::-webkit-media-controls-play-button {
|
|
display: none !important;
|
|
-webkit-appearance: none !important;
|
|
}
|
|
*::-webkit-media-controls-start-playback-button {
|
|
display: none !important;
|
|
-webkit-appearance: none !important;
|
|
}
|