Node聊天程序实例05:index.html和style.css

作者:vousiu

出处:http://www.cnblogs.com/vousiu

本实例参考自Mike Cantelon等人的《Node.js in Action》一书。

index.html

Node聊天程序实例05:index.html和style.css

style.css

body {

  padding: 50px;

  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;

}

a {

  color: #00B7FF;

}

#content {

  width: 800px;

  margin-left: auto;

  margin-right: auto;

}

#room {

  background-color: #ddd;

  margin-bottom: lem;

}

#messages {

  width: 690px;

  height: 300px;

  overflow: auto;

  background-color: #eee;

  margin-bottom: 1em;

  margin-right: 10px;

}

#room-list {

  float: right;

  width: 100px;

  height: 300px;

  overflow: auto;

}

#room-list div {

  border-bottom: 1px solid #eee;

}

#room-list div:hover {

  background-color: #ddd;

}

#send-message {

  width: 700px;

  margin-bottom: 1em;

  margin-right: 1em;

}

#help {

  font: 10px "Lucida Grande", Helvetica, Arial, sans-serif;

}
上一篇:【开源项目11】组件间通信利器EventBus


下一篇:如何高效地向Redis插入大量的数据(转)