2014-04-15 09:59:52 +00:00
|
|
|
/*
|
|
|
|
Shoutbox Messages
|
|
|
|
*/
|
|
|
|
|
2014-05-10 01:26:18 +00:00
|
|
|
#shoutbox {
|
|
|
|
display: table;
|
|
|
|
}
|
|
|
|
|
2014-04-15 09:59:52 +00:00
|
|
|
.shoutmsg {
|
2014-08-11 00:07:12 +00:00
|
|
|
display: block;
|
2014-04-29 18:18:14 +00:00
|
|
|
margin-bottom: 5px;
|
2014-05-09 21:38:14 +00:00
|
|
|
clear: both;
|
2014-05-10 12:43:40 +00:00
|
|
|
position: relative;
|
2014-04-15 09:59:52 +00:00
|
|
|
|
2014-05-10 12:43:40 +00:00
|
|
|
.destroy {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: -10px;
|
2014-04-15 09:59:52 +00:00
|
|
|
}
|
2014-05-09 21:38:14 +00:00
|
|
|
|
|
|
|
.user {
|
2014-08-11 00:07:12 +00:00
|
|
|
display: inline;
|
2014-05-09 21:38:14 +00:00
|
|
|
|
|
|
|
.username {
|
|
|
|
clear: right;
|
2014-08-11 00:07:12 +00:00
|
|
|
float: left;
|
2014-05-09 21:38:14 +00:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.time {
|
2014-08-11 00:07:12 +00:00
|
|
|
float: right;
|
2014-05-09 21:38:14 +00:00
|
|
|
display: block;
|
|
|
|
color: #5a5a5a;
|
|
|
|
}
|
|
|
|
}
|
2014-05-10 01:26:18 +00:00
|
|
|
|
|
|
|
.message {
|
2014-08-11 00:07:12 +00:00
|
|
|
clear:both;
|
|
|
|
display: block;
|
2014-05-10 12:43:40 +00:00
|
|
|
|
|
|
|
.contents {
|
2014-06-06 20:10:37 +00:00
|
|
|
word-break: break-word;
|
2014-05-10 13:10:59 +00:00
|
|
|
word-wrap: break-word;
|
2014-05-10 12:43:40 +00:00
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
padding: 0 10px;
|
|
|
|
}
|
2014-05-10 01:26:18 +00:00
|
|
|
}
|
2014-04-21 18:19:03 +00:00
|
|
|
}
|