ensl.org/app/assets/stylesheets/components/_shoutbox.scss

50 lines
649 B
SCSS
Raw Normal View History

/*
Shoutbox Messages
*/
#shoutbox {
display: table;
}
.shoutmsg {
display: table-row;
margin-bottom: 5px;
clear: both;
2014-05-10 12:43:40 +00:00
position: relative;
2014-05-10 12:43:40 +00:00
.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;
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;
}
}
}