comparison sat_templates/templates/bulma/static/call.css @ 360:c98a0a4a3fd0

bulma: "call" template, first draft: Basic template to make or receive calls. rel 422
author Goffi <goffi@goffi.org>
date Thu, 01 Jun 2023 20:50:47 +0200
parents
children a5a80d761e3e
comparison
equal deleted inserted replaced
359:16b3a2988afd 360:c98a0a4a3fd0
1
2 .call_box {
3 width: 100%;
4 height: 500px;
5 position: relative;
6 overflow: hidden;
7 border: 1px solid #ddd;
8 margin-bottom: 15px;
9 }
10
11 #remote_video, #local_video {
12 border: 3px solid #eee;
13 box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
14 width: 100%;
15 height: 100%;
16 object-fit: cover;
17 }
18
19 #remote_video {
20 position: absolute;
21 top: 0;
22 left: 0;
23 }
24
25 #local_video {
26 position: absolute;
27 bottom: 10px;
28 right: 10px;
29 width: 30%;
30 height: 30%;
31 }
32