Advertisement
Guest User

Open Broadcaster Hitbox Chat 1.03 [12.11.2015]

a guest
Nov 24th, 2015
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.17 KB | None | 0 0
  1. /* Howto
  2. ================================================== */
  3. /*
  4. 1. Füge ein "CLR Browser" als Quelle in deine vorhandene Szene ein.
  5. https://obsproject.com/forum/resources/clr-browser-source-plugin.22/
  6. 2. Füge den Link zu deinem Hitbox-Chat ein. Beispiel: http://www.hitbox.tv/embedchat/NUTZERNAME?autoconnect=true&%3Fautoconnect=true
  7. 3. Passe die Größe des Chats an, in welcher dieser Angezeigt wird (Width & Height / Breite & Höhe).
  8. 4. Wechsel auf den Reiter CSS und ersetzte den dort vorhandenen CSS-Code durch den untenstehenden.
  9. 5. Du bist Fertig!
  10. 6. Tipp: Den "CLR Browser" als Globale Quelle hinzufügen, das spart bei mehreren Szenen Zeit. ;)
  11. */
  12.  
  13. /* Bild Tutorial
  14. ================================================== */
  15. /*
  16. 1. http://i.imgur.com/hnmOMkf.png
  17. 2. http://i.imgur.com/Di6MlSj.png
  18. 3. http://i.imgur.com/9n4CiYU.png
  19. 4. http://i.imgur.com/zb6gdn5.png
  20. */
  21. /* CSS-Code
  22. ================================================== */
  23.  
  24. /* User Font / Nachrichten Font
  25. ================================================== */
  26. /* Nachrichten*/
  27. .chatBody.fontSize1 li, .chat-messages.compact .message .chat-text,.chatBody .name{
  28.     font-size: 14px !important;
  29.     font-weight: bold !important;
  30.     text-shadow: 0px 0px 10px #000000;
  31. }
  32. /* Nutzernamen*/
  33. .chatBody .title {
  34.     opacity: 1.0 !important;
  35.     line-height: 1.25em !important;
  36.     font-weight: bold !important;
  37. }
  38.  
  39. /* Transperent Fix / Schatten Fix
  40. ================================================== */
  41. body {
  42.     background-color: rgba(0, 0, 0, 0)!important
  43.     margin: 0px auto;
  44.     overflow: hidden;
  45.     font-size
  46. }
  47. .chat-row1, .chat-input-wrap, #currentview.embedchat #chat-tabs, .drag-handle, .drag-handle .visible, tse-scrollbar,.global-message,.chat-status-message,.chat-buffer{
  48.     display:none !important;
  49. }
  50. .theme-dark #chat, body.theme-dark, body .force-dark, .theme-dark .chat-main {
  51.     background-color: rgba(0, 0, 0, 0)!important;
  52. }
  53. #currentview.embedchat #embed-chat #chat, .chat-main{
  54.     top: 0px!important;
  55. }
  56. .chat-fadeout{
  57.     background-color: transparent !important;
  58.     background-image: -webkit-linear-gradient(rgba(0,0,0,0), transparent) !important;
  59.     background-image: linear-gradient(rgba(0,0,0,0), transparent) !important;
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement