Hotsammysliz

OBS Style Code

Jun 30th, 2015
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.96 KB | None | 0 0
  1. <style>
  2. body {
  3. overflow: hidden;
  4. margin: 5px;
  5. }
  6.  
  7. @-webkit-keyframes FadeOut {
  8. 0% {
  9. opacity:1;
  10. -webkit-transform: scaleY(1);
  11. -webkit-transform: translateX(0%);
  12. }
  13. 100% {
  14. opacity:0;
  15. -webkit-transform: scaleY(0);
  16. -webkit-transform: translateX(90%);
  17. }
  18. }
  19. @-webkit-keyframes FadeIn {
  20. 0% {
  21. opacity:0;
  22. -webkit-transform: scaleY(0);
  23. -webkit-transform: translateX(-90%);
  24. }
  25. 100% {
  26. opacity:1;
  27. -webkit-transform: scaleY(1);
  28. -webkit-transform: translateX(0%);
  29. }
  30. }
  31. #chat_box {
  32. background-color: transparent;
  33. font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  34. font-size: 13px;
  35. font-style: normal;
  36. font-variant: normal;
  37. font-weight: normal;
  38. position: absolute;
  39. overflow: hidden;
  40. color: #D3D3D3;
  41. border-radius: 4px;
  42. width: calc(100% - 10px);
  43. height: calc(100% - 10px);
  44. }
  45.  
  46. #chat_box.dark {
  47. background: rgba(0,0,0,0.3);
  48. color: #fff;
  49. }
  50.  
  51. #chat_box.light {
  52. background: rgba(255,255,255,0.3);
  53. color: #000;
  54. }
  55.  
  56. .nick {
  57. font-weight: bold;
  58. text-transform: capitalize;
  59. }
  60.  
  61. .tag {
  62. display: inline-block;
  63. text-indent: 21px;
  64. background-position: 0 center;
  65. background-repeat: no-repeat;
  66. display: inline-block;
  67. vertical-align: bottom;
  68. height: 18px;
  69. min-width: 18px;
  70. width: expression(document.body.clientWidth < $width ? "18px":"auto");
  71. padding: 0;
  72. margin-right: 3px;
  73. margin-bottom: -1px;
  74. text-indent: -9999px;
  75. border-radius: 2px;
  76. -moz-border-radius: 2px;
  77. -webkit-border-radius: 2px;
  78. overflow: hidden;
  79. }
  80.  
  81. .turbo {
  82. background-color: #6441a5;
  83. background-image: url(//www-cdn.jtvnw.net/images/xarth/g/g18_turbo-FFFFFF80.png);
  84. }
  85.  
  86. .moderator {
  87. background-color: #009900;
  88. background-image: url(//www-cdn.jtvnw.net/images/xarth/g/g18_sword-FFFFFF80.png);
  89. }
  90.  
  91. .broadcaster {
  92. background-color: #000000;
  93. background-image: url(//www-cdn.jtvnw.net/images/xarth/g/g18_camera-FFFFFF80.png);
  94. }
  95.  
  96. .staff {
  97. background-color: #6441a5;
  98. background-image: url(//www-cdn.jtvnw.net/images/xarth/g/g18_wrench-FFFFFF80.png);
  99. }
  100.  
  101. .admin {
  102. background-color: #FF0000;
  103. background-image: url(//www-cdn.jtvnw.net/images/xarth/g/g18_badge-FFFFFF80.png);
  104. }
  105.  
  106. .chat_line {
  107. margin-left: 3px;
  108. margin-right: 3px;
  109. padding-top: 2px;
  110. padding-bottom: 3px;
  111. line-height: 16px;
  112. -webkit-animation: FadeIn .6s;
  113. -webkit-animation-delay: 0s;
  114. }
  115.  
  116. .chat_line .message {
  117. word-break: break-all;
  118. word-wrap: break-word;
  119. }
  120.  
  121. .emoticon {
  122. margin-bottom: -7px;
  123. }
  124. </style>
Advertisement
Add Comment
Please, Sign In to add comment