diff options
author | David Baker <dbkr@matrix.org> | 2014-09-17 16:26:35 +0100 |
---|---|---|
committer | David Baker <dbkr@matrix.org> | 2014-09-17 16:26:35 +0100 |
commit | 1fb2c831e824d89aa849fc2aee45f5f1162842b2 (patch) | |
tree | 124f735faff26a592517ce88aa99bcf1f9cd712a /webclient/app.css | |
parent | Time out calls from both ends properly. (diff) | |
download | synapse-1fb2c831e824d89aa849fc2aee45f5f1162842b2.tar.xz |
Video calling (in a tiny box at the moment)
Diffstat (limited to 'webclient/app.css')
-rwxr-xr-x | webclient/app.css | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/webclient/app.css b/webclient/app.css index 4a4ba7b8f4..1845b34910 100755 --- a/webclient/app.css +++ b/webclient/app.css @@ -89,6 +89,21 @@ a:active { color: #000; } font-size: 80%; } +#localVideo { + position: absolute; + top: 32px; + left: 160px; + width: 128px; + height: 72px; +} +#remoteVideo { + position: absolute; + top: 32px; + left: 300px; + width: 128px; + height: 72px; +} + #headerContent { color: #ccc; max-width: 1280px; @@ -96,6 +111,7 @@ a:active { color: #000; } text-align: right; height: 32px; line-height: 32px; + position: relative; } #headerContent a:link, |