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

作者:vousiu

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

 

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

 

index.html

 

 

 

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;

}

 

posted @ 2016-06-23 19:31  vousiu  阅读(541)  评论(1编辑  收藏  举报