Browse Source

clean up for custom page

windhamdavid 11 years ago
parent
commit
55e5d0ce8f
2 changed files with 2 additions and 22 deletions
  1. 1 15
      site/index.html
  2. 1 7
      site/style.css

+ 1 - 15
site/index.html

@@ -1,27 +1,13 @@
 <html>
   <head>
-    <title>Example webrtc.io</title>
+    <title>Daveo (chat)</title>
     <link type="text/css" href="/style.css" rel="stylesheet"></link>
-
     <script src="/webrtc.io.js"></script>
   </head>
   <body onload="init()">
     <div id="videos">
-      <a href="https://github.com/webRTC"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png" alt="Fork me on GitHub"></a>
       <video id="you" class="flip" autoplay width="263" height="200" style="position: absolute; left: 0px; bottom: 0px;"></video>
     </div>
-    <div id="chatbox">
-      <div id="hideShowMessages" class="button">toggle chat</div>
-      <div id="messages">
-      </div>
-      <input id="chatinput" type="text" placeholder="Message:"/>
-    </div>
-
-    <div class="buttonBox">
-      <div id="fullscreen" class="button">Enter Full Screen</div>
-      <div id="newRoom" class="button">Create A New Room</div>
-    </div>
-    
     <script src="/script.js"></script>
   </body>
 </html>

+ 1 - 7
site/style.css

@@ -9,13 +9,7 @@ html {
 body {
   padding: 0;
   margin: 0;
-  background: -moz-linear-gradient(top, rgba(238,238,238,1) 0%, rgba(238,238,238,0) 100%);
-  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(238,238,238,1)), color-stop(100%,rgba(238,238,238,0)));
-  background: -webkit-linear-gradient(top, rgba(238,238,238,1) 0%,rgba(238,238,238,0) 100%);
-  background: -o-linear-gradient(top, rgba(238,238,238,1) 0%,rgba(238,238,238,0) 100%);
-  background: -ms-linear-gradient(top, rgba(238,238,238,1) 0%,rgba(238,238,238,0) 100%);
-  background: linear-gradient(to bottom, rgba(238,238,238,1) 0%,rgba(238,238,238,0) 100%);
-  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#00eeeeee',GradientType=0 );
+  background: #000000;
 }
 
 #videos {