Mercurial > libervia-templates
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sat_templates/templates/bulma/static/call.css Thu Jun 01 20:50:47 2023 +0200 @@ -0,0 +1,32 @@ + +.call_box { + width: 100%; + height: 500px; + position: relative; + overflow: hidden; + border: 1px solid #ddd; + margin-bottom: 15px; +} + +#remote_video, #local_video { + border: 3px solid #eee; + box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1); + width: 100%; + height: 100%; + object-fit: cover; +} + +#remote_video { + position: absolute; + top: 0; + left: 0; +} + +#local_video { + position: absolute; + bottom: 10px; + right: 10px; + width: 30%; + height: 30%; +} +