diff --git a/static/css/sb.css b/static/css/sb.css index a64345a..9a19065 100644 --- a/static/css/sb.css +++ b/static/css/sb.css @@ -1,19 +1,39 @@ +#canvas-container { + position: relative; + display: none; +} + +#header { + margin-left: 15px; +} #sb-video { - width: 320px; - height: 240px; - margin: 15px; - float: left; + width: 640px; + height: 480px; + position: relative; + z-index: 100; } #sb-canvas { - width: 320px; - height: 240px; - margin: 15px; - float: left; + width: 640px; + height: 480px; + position: absolute; + top: 0px; + left: 0px; + background-color: rgba(0, 0, 0, 0); + z-index: 1000; } -button { - clear:both; - margin: 30px; +#sb-message { + visibility: hidden; } + +/* +#sb-message-text { + position: absolute; + left: 10px; + bottom: 20px; + z-index: 10000; +} +*/ + diff --git a/static/index.html b/static/index.html index c1f1a67..3785e32 100644 --- a/static/index.html +++ b/static/index.html @@ -4,22 +4,42 @@