Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@wjlafrance
Created March 23, 2011 10:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wjlafrance/882884 to your computer and use it in GitHub Desktop.
Save wjlafrance/882884 to your computer and use it in GitHub Desktop.
body {
background-color: black;
color: white;
}
div {
padding: 1.5px;
border: 1px white solid;
}
div.chat {
float: left;
width: 74%;
}
div.chat span.error {
color: red;
}
div.chat span.info {
color: lightblue;
}
div.chat span.username {
color: yellow;
}
div.chat span.username:before {
content: '<';
}
div.chat span.username:after {
content: '> ';
}
div.channel {
float: right;
width: 25%;
}
div.channel p.header {
text-align: center;
background-color: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment