diff options
author | Florian <stayawake@lavabit.com> | 2014-02-07 15:22:41 +0100 |
---|---|---|
committer | Florian <stayawake@lavabit.com> | 2014-02-07 15:22:41 +0100 |
commit | e92d63f5e363a20b67b0a53ae1e470b8ad0e0918 (patch) | |
tree | 0123a40385268cbc1c55a8361d8ccd14ed9df9d0 /css | |
parent | 7d2bfcdbbf8115753c442fdf03df65356318e0c0 (diff) |
display no of active camera as overlay
Diffstat (limited to 'css')
-rw-r--r-- | css/cam.css | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/css/cam.css b/css/cam.css index 2155efa..3300965 100644 --- a/css/cam.css +++ b/css/cam.css @@ -1,4 +1,25 @@ -img.fullscreen { +body { + background-color: #000; +} + +.camnumber { + position: absolute; + + left: 20px; + top: -100px; + + background: rgba(0,0,0,0.4); + + color: rgba(255, 255, 255, 0.7); + font-weight: bold; + font-family: Helvetica, Verdana, Arial, sans-serif; + font-size: 120px; + line-height: 120px; + + z-index: 100; + } + +img { min-height: 100%; min-width: 1024px; @@ -8,5 +29,9 @@ img.fullscreen { position: fixed; top: 0; left: 0; + + margin: 0; + padding: 0; + z-index: 50; } |