Created
March 23, 2011 10:00
-
-
Save wjlafrance/882884 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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