ensl.org/app/assets/stylesheets/themes/default/components/_shoutbox.scss
2014-08-10 17:07:12 -07:00

49 lines
633 B
SCSS

/*
Shoutbox Messages
*/
#shoutbox {
display: table;
}
.shoutmsg {
display: block;
margin-bottom: 5px;
clear: both;
position: relative;
.destroy {
position: absolute;
top: 0;
right: -10px;
}
.user {
display: inline;
.username {
clear: right;
float: left;
display: block;
}
.time {
float: right;
display: block;
color: #5a5a5a;
}
}
.message {
clear:both;
display: block;
.contents {
word-break: break-word;
word-wrap: break-word;
position: relative;
display: block;
padding: 0 10px;
}
}
}