Skip to content

Instantly share code, notes, and snippets.

@MrRopain
Last active March 31, 2017 01:04
Show Gist options
  • Save MrRopain/fdfbbaa195da9e5503132269151bb914 to your computer and use it in GitHub Desktop.
Save MrRopain/fdfbbaa195da9e5503132269151bb914 to your computer and use it in GitHub Desktop.
@import url('https://fonts.googleapis.com/css?family=Ubuntu:300,400,700');
#chat_box {
font-family: 'Ubuntu';
font-size: 20px;
font-weight: bold;
line-height: 1;
}
.chat_line {
background-color: rgba(33, 33, 33, 0.33);
border-radius: 5px;
margin-bottom: 5px;
padding: 4px;
color: #fff;
}
.chat_line .tag {
float: right;
margin-right: 3px;
border-radius: 3px;
}
.chat_line .nick {
display: inline-block;
font-size: 20px;
font-weight: bold;
}
.chat_line .time_stamp {
display: inline;
float: right;
font-size: 16px;
}
.chat_line .colon {
display: none;
}
.chat_line .message {
padding: 6px;
padding-bottom: 2px;
display: block;
text-shadow:
-1px -1px 0 #6001ff,
1px -1px 0 #6001ff,
-1px 1px 0 #6001ff,
1px 1px 0 #6001ff;
line-height: 1.3;
}
.chat_line[data-nick="nightbot"] {
display: none;
}
/* custom user tags */
.chat_line[data-nick="mrropain"] .nick::before {
display: inline-block;
vertical-align: middle;
content: "Homie";
background-color: #5601AA;
color: #fff;
padding: 0px 3px 0px 3px;
border-radius: 3px;
font-size: 16px;
font-weight: bold;
box-shadow: 0px 3px #430188;
margin-right: 5px;
margin-bottom: 5px;
}
.chat_line[data-nick="riotwarrior"] .nick::before {
display: inline-block;
vertical-align: middle;
content: "Dancing Queen";
background-color: #5601AA;
color: #fff;
padding: 0px 3px 0px 3px;
border-radius: 3px;
font-size: 16px;
font-weight: bold;
box-shadow: 0px 3px #430188;
margin-right: 5px;
margin-bottom: 5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment