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-05-10 01:26:18 +00:00
|
|
|
display: table-row;
|
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-05-10 01:26:18 +00:00
|
|
|
display: table-cell;
|
|
|
|
min-width: 30%;
|
2014-05-09 21:38:14 +00:00
|
|
|
|
|
|
|
.username {
|
|
|
|
clear: right;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.time {
|
|
|
|
clear: left;
|
|
|
|
display: block;
|
|
|
|
color: #5a5a5a;
|
|
|
|
}
|
|
|
|
}
|
2014-05-10 01:26:18 +00:00
|
|
|
|
|
|
|
.message {
|
|
|
|
max-width: 66%;
|
|
|
|
display: table-cell;
|
2014-05-10 12:43:40 +00:00
|
|
|
|
|
|
|
.contents {
|
2014-05-10 13:10:59 +00:00
|
|
|
word-wrap: break-word;
|
|
|
|
word-break: break-all;
|
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
|
|
|
}
|