diff options
| author | lassulus <lassulus@googlemail.com> | 2013-11-06 15:36:46 +0100 | 
|---|---|---|
| committer | lassulus <lassulus@googlemail.com> | 2013-11-06 15:36:46 +0100 | 
| commit | 1ec3ccd40e1486541aa75da5c6d6d663ee55ffb1 (patch) | |
| tree | 6d2806c06ec46aeff3d76f2e04c9e9929b589824 /webchat | |
| parent | a7f6ce941d3001649f7b51f53783e1c2e923b2c2 (diff) | |
better css
Diffstat (limited to 'webchat')
| -rw-r--r-- | webchat/public/reset.css | 11 | 
1 files changed, 8 insertions, 3 deletions
| diff --git a/webchat/public/reset.css b/webchat/public/reset.css index 91b9a438..746b81c4 100644 --- a/webchat/public/reset.css +++ b/webchat/public/reset.css @@ -30,6 +30,8 @@ footer, header, hgroup, menu, nav, section {  }  body {    line-height: 1; +  background-color: black; +  color: white;  }  ol, ul {    list-style: none; @@ -42,14 +44,17 @@ q:before, q:after {    content: '';    content: none;  } -x-table { +#chatbox {    border-collapse: collapse;    border-spacing: 0; +  border: solid 2px black; +  background-color: white; +  color: black;  } -.from { +.chat_from {    font-weight: bold;    text-align: right;  } -.from:after { +.chat_from:after {    content: ":";  } | 
