diff options
Diffstat (limited to 'webclient/style.css')
| -rw-r--r-- | webclient/style.css | 41 |
1 files changed, 37 insertions, 4 deletions
diff --git a/webclient/style.css b/webclient/style.css index 202a45d..e568584 100644 --- a/webclient/style.css +++ b/webclient/style.css @@ -11,11 +11,12 @@ div padding:0px; } -#contacts +#roster { float:left; - width:40%; + width:250px; height:100%; + font-size:0.8em; } #bottom @@ -43,10 +44,42 @@ div #log { - height:200px; + height:400px; width:100%; overflow:auto; display:none; border-top:1px solid black; } -
\ No newline at end of file + +.roster-contact +{ + border-bottom : 1px dotted black; + padding: 5px; +} + +.roster-contact:hover +{ + background-color: #E5E9EE; +} + + +.roster-name +{ + font-weight:bold; +} + +#roster > ul +{ + list-style-type: none; + padding: 0px; +} + +.online +{ + background-color: #DBFFDC; +} + +.away +{ + background-color: #E3E3E3; +}
\ No newline at end of file |
