Skip to content

Instantly share code, notes, and snippets.

@tinolove81
Last active October 12, 2018 18:51
Show Gist options
  • Select an option

  • Save tinolove81/eaeabb63975723fc6485c237167754c9 to your computer and use it in GitHub Desktop.

Select an option

Save tinolove81/eaeabb63975723fc6485c237167754c9 to your computer and use it in GitHub Desktop.
::-webkit-scrollbar {
visibility: hidden;
}
#chat_box {
padding: 0;
color: white;
background: transparent;
font-size: 16px;
font-weight: 300;
font-family: 'Meiryo', 'Microsoft JhengHei';
}
.chat_line {
margin: 2px;
padding: 0;
width: 100%;
line-height: 1rem;
animation: slideInRight .6s cubic-bezier(.2, 1, .3, 1);
}
.chat_line .time_stamp {
display: none;
}
.chat_line .nick {
text-shadow: 0 -1px #000,
1px -1px #000,
1px 0 #000,
1px 1px #000,
0 1px #000,
-1px 1px #000,
-1px 0 #000,
-1px -1px #000;
}
.chat_line .message {
color: white;
text-shadow: 0 -1px #000,
1px -1px #000,
1px 0 #000,
1px 1px #000,
0 1px #000,
-1px 1px #000,
-1px 0 #000,
-1px -1px #000;
}
@keyframes slideInRight {
0% {
-webkit-transform: translateX(100%);
transform: translateX(100%);
visibility: visible;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment