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-04-15 09:59:52 +00:00
|
|
|
|
|
|
|
.timestamp {
|
2014-04-21 18:19:03 +00:00
|
|
|
@extend .highlight;
|
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;
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
2014-04-21 18:19:03 +00:00
|
|
|
}
|