Skip to content

Instantly share code, notes, and snippets.

@jongalloway
Created April 24, 2020 05:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jongalloway/97b2e5724e802bdc51d2468c8c6519ee to your computer and use it in GitHub Desktop.
Save jongalloway/97b2e5724e802bdc51d2468c8c6519ee to your computer and use it in GitHub Desktop.
Streamlabs Chat CSS tweak so message goes below name. Good for tall, thin layout.
@import url(https://fonts.googleapis.com/css?family=Roboto:700);
* {
box-sizing: border-box;
}
html, body {
height: 100%;
overflow: hidden;
}
body {
text-shadow: 0 0 1px #000, 0 0 2px #000;
background: {background_color};
font-family: 'Roboto';
font-weight: 700;
font-size: {font_size};
line-height: 1.5em;
color: {text_color};
}
#log>div {
animation: fadeInRight .3s ease forwards, fadeOut 0.5s ease {message_hide_delay} forwards;
-webkit-animation: fadeInRight .3s ease forwards, fadeOut 0.5s ease {message_hide_delay} forwards;
}
.colon {
display: none;
}
#log {
display: table;
position: absolute;
bottom: 0;
left: 0;
padding: 0 .5em .5em;
width: 100%;
table-layout: fixed;
}
#log>div {
display: table-row;
}
#log>div.deleted {
visibility: hidden;
}
#log .emote {
background-repeat: no-repeat;
background-position: center;
background-size: contain;
padding: 0.4em 0.2em;
position: relative;
}
#log .emote img {
display: inline-block;
height: 1em;
opacity: 0;
}
#log .message,#log .meta {
vertical-align: top;
display: table-cell;
padding-bottom: 0.1em;
}
#log .meta {
/*width: 35%;
text-align: right;
padding-right: 0.5em;
*/
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
display: table;
margin-top: 10px;
}
#log .message {
word-wrap: break-word;
/*width: 65%;*/
display: table;
}
.badge {
display: inline-block;
margin-right: 0.2em;
position: relative;
height: 1em;
vertical-align: middle;
top: -0.1em;
}
.name {
margin-left: 0.1em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment