mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 17:31:27 +00:00
49 lines
649 B
SCSS
49 lines
649 B
SCSS
/*
|
|
Shoutbox Messages
|
|
*/
|
|
|
|
#shoutbox {
|
|
display: table;
|
|
}
|
|
|
|
.shoutmsg {
|
|
display: table-row;
|
|
margin-bottom: 5px;
|
|
clear: both;
|
|
position: relative;
|
|
|
|
.destroy {
|
|
position: absolute;
|
|
top: 0;
|
|
right: -10px;
|
|
}
|
|
|
|
.user {
|
|
display: table-cell;
|
|
min-width: 30%;
|
|
|
|
.username {
|
|
clear: right;
|
|
display: block;
|
|
}
|
|
|
|
.time {
|
|
clear: left;
|
|
display: block;
|
|
color: #5a5a5a;
|
|
}
|
|
}
|
|
|
|
.message {
|
|
max-width: 66%;
|
|
display: table-cell;
|
|
|
|
.contents {
|
|
word-wrap: break-word;
|
|
word-break: break-all;
|
|
position: relative;
|
|
display: block;
|
|
padding: 0 10px;
|
|
}
|
|
}
|
|
}
|