Dotsarecool

Side KapChat

Mar 12th, 2022 (edited)
862
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.98 KB | None | 0 0
  1. #chat_box {
  2.     /* For use with https://nightdev.com/hosted/obschat?theme=&channel=channelname&fade=false&bot_activity=false&prevent_clipping=false */
  3.     /* Replace 'channelname' with your twitch channel */
  4.     /* Set the OBS Browser source to height of 50 (width can be whatever) */
  5.    
  6.     /* Customize Text Style here */
  7.    
  8.     font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
  9.     font-size: 20px;
  10.     color: #D3D3D3;
  11.     text-shadow:
  12.         2px 2px 1px #000,
  13.         -1px 2px 1px #000,
  14.         2px -1px 1px #000,
  15.         -1px -1px 1px #000;
  16.        
  17.     /* Don't touch anything below here */
  18.    
  19.     white-space: nowrap;
  20.     right: 0;
  21.     padding-top: 5px;
  22.     width: auto;
  23. }
  24.  
  25. .chat_line {
  26.     display: inline-block;
  27.     animation: slide-in 500ms 1;
  28. }
  29.  
  30. .chat_line * {
  31.     vertical-align: top;
  32. }
  33.  
  34. .emoticon {
  35.     transform: translate(0, -5px);
  36. }
  37.  
  38. @keyframes slide-in {
  39.     from {
  40.         opacity: 0;
  41.     } to {
  42.         opacity: 100%;
  43.     }
  44. }
Add Comment
Please, Sign In to add comment