diff options
Diffstat (limited to 'css')
-rw-r--r-- | css/chat.css | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/css/chat.css b/css/chat.css index 6dcf629..0b38d70 100644 --- a/css/chat.css +++ b/css/chat.css @@ -1,6 +1,6 @@ .chatInputMessage { - font-family:Comic Sans MS, Comic Sans MS5, cursive; + font-family: 'Trebuchet MS1', 'Trebuchet MS', sans-serif; border: 1px solid gray; background-color:#999; width: 700px; @@ -45,7 +45,12 @@ font-size: 16px; display: inline-block; width: 525px; - padding: 5px 5px 5px 5px; + padding: 5px 5px 5px 5px; + white-space: pre-wrap; /* CSS3 */ + white-space: -moz-pre-wrap; /* Firefox */ + white-space: -pre-wrap; /* Opera <7 */ + white-space: -o-pre-wrap; /* Opera 7 */ + word-wrap: break-word; /* IE */ } .chatTimestamp { font-family:"Times New Roman", Times, serif; @@ -92,6 +97,8 @@ .chatContainer2 { background-color: #222; + padding:10px; + padding-bottom:0px; border-radius: 12px; width:810px; margin:0 auto 5px; |