Sergey Lyubka hace 15 años
padre
commit
0f42c5ba0c
Se han modificado 3 ficheros con 14 adiciones y 1 borrados
  1. 3 1
      examples/html/index.html
  2. BIN
      examples/html/logo.png
  3. 11 0
      examples/html/style.css

+ 3 - 1
examples/html/index.html

@@ -13,7 +13,8 @@
 
   <body>
   <div id="header">
-    <div class="rounded infobox help-message">
+    <div id="logo"></div>
+    <div class="rounded infobox help-message" id="motd">
       Chat room implemented using
       <a href="http://code.google.com/p/mongoose" target="_blank">Mongoose</a>
       embeddable web server.
@@ -24,6 +25,7 @@
       could be used in your application as a collaboration tool.
     </div>
   </div>
+  <div>
 
   <div id="middle">
     <div><center><span id="error" class="rounded"></span><center></div>

BIN
examples/html/logo.png


+ 11 - 0
examples/html/style.css

@@ -6,6 +6,17 @@ body {
   font: 13px Arial; margin: 0.5em 1em;
 }
 
+#logo {
+  background: url('logo.png') no-repeat ;
+  width: 160px;
+  height: 40px;
+  float: left;
+}
+
+#motd {
+  margin-left: 170px;
+}
+
 .infobox {
   background: #eed;
   padding: 1px 1em;