Advertisement
Fonic_Artes

XSplit & OBSChat (Left Entrance ONLY Animated)

Nov 1st, 2015
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 4.05 KB | None | 0 0
  1. /* This uses the Nightdev chat plugin KapChat use this URL for the chat creation.
  2. https://www.nightdev.com/hosted/obschat/?theme=dark&channel=YOURCHANNELHERE&prevent_clipping=true
  3. Please go to https://nightdev.com/kapchat/ to get the CLR Browser Plugin (for OBS), XSplit has support natively in XSplit 2.0. */
  4.  
  5. body {
  6.     overflow: hidden;
  7.     margin: 5px;
  8.     color: transparent;
  9. }
  10.  
  11. #chat_box {
  12.     background-color: transparent !important;
  13.     font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  14.     font-size: 12px;
  15.     font-style: normal;
  16.     font-variant: normal;
  17.     font-weight: normal;
  18.     position: relative;
  19.     overflow: hidden;
  20.     color: #FFFFFF !important;
  21.     border-radius: 4px;
  22.     width: calc(100% - 10px);
  23.     height: calc(100% - 10px);
  24.     line-height: 13px;
  25. }
  26.  
  27. .nick {
  28.     font-weight: bold;
  29.     /* This makes all nicks white. */
  30.     color: #FFFFFF !important;
  31. }
  32.  
  33. .tag {
  34.     /* Change to none if you don"t want tags displayed. If you have both a mod and broadcaster icon, do /unmod <your name> to remove the mod tag. */
  35.     display: inline-block;
  36.     text-indent: 15px;
  37.     background-position: 0 center;
  38.     background-repeat: no-repeat;
  39.     /* In the .turbo, .mod, .broadcaster etc tags remove the background-color segment to make transparent. */
  40.     background-color: transparent;
  41.     display: inline-block;
  42.     vertical-align: bottom;
  43.     height: 18px;
  44.     min-width: 18px;
  45.     width: expression(document.body.clientWidth < $width ? "18px":"auto");
  46.     padding: 0;
  47.     margin-right: 3px;
  48.     margin-bottom: -1px;
  49.     text-indent: -9999px;
  50.     border-radius: 2px;
  51.     -moz-border-radius: 2px;
  52.     -webkit-border-radius: 2px;
  53.     overflow: hidden;
  54. }
  55.  
  56. .admin-1 {
  57. background-image: url("https://i.imgur.com/Ti53H7C.png") !important;
  58.  }
  59.  
  60. .broadcaster-1 {
  61.  background-image: url("https://i.imgur.com/qDA7e1r.png") !important;
  62.  }
  63.  
  64. .clip-champ-1 {
  65.  background-image: url("https://i.imgur.com/CdEOy0j.png") !important;
  66.  }
  67.  
  68. .global_mod-1 {
  69.  background-image: url("https://i.imgur.com/ZPE0OmQ.png") !important;
  70. }
  71.  
  72. .moderator-1 {
  73.  background-image: url("https://i.imgur.com/3TMzt9c.png") !important;
  74.  }
  75.  
  76. .partner-1 {
  77.  background-image: url("https://i.imgur.com/YyggREh.png") !important;
  78.  }
  79.  
  80. .premium-1 {
  81. background-image: url("https://i.imgur.com/kbLTbDw.png") !important;
  82.  }
  83.  
  84. .staff-1 {
  85. background-image: url("https://i.imgur.com/hC9v6wW.png") !important;
  86.  }
  87.  
  88. .sub-gifter-1 {
  89.  background-image: url("https://i.imgur.com/BvyYpkM.png") !important;
  90. }
  91.  
  92. .turbo-1 {
  93. background-image: url("https://i.imgur.com/GNYT0yN.png") !important;
  94.  }
  95.  
  96.  
  97. .chat_line {
  98.     margin-left: 3px;
  99.     margin-right: 3px;
  100.     padding-top: 2px;
  101.     padding-bottom: 3px;
  102.     line-height: 13px;
  103.     margin-bottom: 3px;
  104.     background-color: rgba(0,0,0,0.6);
  105.     border-radius: 6px;
  106.     padding: 5px;
  107.     animation: fadeInLeft 30.05s forwards;
  108.     -moz-animation: fadeInLeft 30.05s forwards;
  109.     -webkit-animation: fadeInLeft 30.05s forwards;
  110. }
  111.  
  112. .chat_line[data-nick="Chat"] {
  113.     display: none !important;
  114. }
  115.  
  116. .chat_line .message {
  117.     /*word-break: break-all;*/
  118.     word-wrap: break-word;
  119. }
  120.            
  121. .chat_line .time_stamp {
  122.     display: none;
  123.     padding-right: 3px;
  124. }
  125.            
  126. span.message {
  127.     /* Makes all part of the chat line white. */
  128.     color: #FFFFFF !important;
  129. }
  130.  
  131. .emoticon {
  132.     margin-bottom: -7px;
  133. }
  134.            
  135. @keyframes fadeInLeft {
  136.     0% {
  137.         opacity: 0;
  138.         -webkit-transform: translate3d(-100%, 0, 0);
  139.         -moz-transform: translate3d(-100%, 0, 0);
  140.         transform: translate3d(-100%, 0, 0);
  141.     }
  142.  
  143.     1% {
  144.         opacity: 1;
  145.         -webkit-transform: none;
  146.         -moz-transform: none;
  147.         transform: none;
  148.     }
  149. }
  150.  
  151. @-webkit-keyframes fadeInLeft {
  152.     0% {
  153.         opacity: 0;
  154.         -webkit-transform: translate3d(-100%, 0, 0);
  155.         -moz-transform: translate3d(-100%, 0, 0);
  156.         transform: translate3d(-100%, 0, 0);
  157.     }
  158.  
  159.     1% {
  160.         opacity: 1;
  161.         -webkit-transform: none;
  162.         -moz-transform: none;
  163.         transform: none;
  164.     }
  165. }
  166.  
  167. @-moz-keyframes fadeInLeft {
  168.     0% {
  169.         opacity: 0;
  170.         -webkit-transform: translate3d(-100%, 0, 0);
  171.         -moz-transform: translate3d(-100%, 0, 0);
  172.         transform: translate3d(-100%, 0, 0);
  173.     }
  174.  
  175.     1% {
  176.         opacity: 1;
  177.         -webkit-transform: none;
  178.         -moz-transform: none;
  179.         transform: none;
  180.     }
  181. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement