More socket goodness

This commit is contained in:
remy 2010-06-14 19:05:20 +01:00
parent a15eace7c8
commit 8e6104ee6c
2 changed files with 13 additions and 4 deletions

View File

@ -1,4 +1,12 @@
[
{
"desc": "Simple chat client",
"url": "web-socket",
"tags": "websocket",
"support": {
"live": "safari chrome"
}
},
{
"desc": "Two videos playing in sync",
"url": "two-videos",

View File

@ -4,16 +4,17 @@
.them { font-weight: bold; }
.them:before { content: 'them '; color: #bbb; font-size: 14px; }
.you { font-style: italic; }
.you:before { content: 'you '; color: #bbb; font-size: 14px;}
.you:before { content: 'you '; color: #bbb; font-size: 14px; font-weight: bold; }
#log {
overflow: auto;
max-height: 300px;
list-style: none;
padding-left: 10px;
padding: 0;
/* margin: 0;*/
}
#log li {
border-bottom: 1px solid #ccc;
margin-bottom: 0;
border-top: 1px solid #ccc;
margin: 0;
padding: 10px 0;
}
</style>