Advertisement
darkviper88

Darkviper88's Chat Settings For Nightbot

Sep 4th, 2015
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1.  
  2. body {
  3. overflow: hidden;
  4. margin: 5px;
  5. }
  6.  
  7. #chat_box {
  8. background-color: transparent;
  9. font-family: 'Open Sans', sans-serif;
  10. font-size:16px;
  11. font-style: normal;
  12. font-variant: normal;
  13. font-weight: bold;
  14. position: absolute;
  15. overflow: hidden;
  16. color: white;
  17. border-radius: 4px;
  18. width: calc(100% - 10px);
  19. height: calc(100% - 10px);
  20. text-shadow:
  21. 3px 3px 0px #000, 3px 2px 0px #000, 3px 1px 0px #000, 3px 0px 0px #000, 3px -1px 0px #000, 3px -2px 0px #000, 3px -3px 0px #000,
  22. -3px 3px 0px #000, -3px 2px 0px #000, -3px 1px 0px #000, -3px 0px 0px #000, -3px -1px 0px #000, -3px -2px 0px #000, -3px -3px 0px #000,
  23. 3px 3px 0px #000, 2px 3px 0px #000, 1px 3px 0px #000, 0px 3px 0px #000, -1px 3px 0px #000, -2px 3px 0px #000, -3px 3px 0px #000,
  24. 3px -3px 0px #000, 2px -3px 0px #000, 1px -3px 0px #000, 0px -3px 0px #000, -1px -3px 0px #000, -2px -3px 0px #000, -3px -3px 0px #000 !important;
  25. }
  26. #chat_box.dark {
  27. background: rgba(0,0,0,0.3);
  28. color: #fff;
  29. }
  30.  
  31. #chat_box.light {
  32. background: rgba(255,255,255,0.3);
  33. color: #000;
  34. }
  35.  
  36. .nick {
  37. font-weight: bold;
  38. text-transform: capitalize;
  39. }
  40.  
  41. .tag {
  42. display: in-line block;
  43. text-indent: 21px;
  44. background-position: 0 center;
  45. background-repeat: no-repeat;
  46. display: inline-block;
  47. vertical-align: bottom;
  48. height: 18px;
  49. min-width: 18px;
  50. width: expression(document.body.clientWidth < $width ? "18px":"auto");
  51. padding: 0;
  52. margin-right: 3px;
  53. margin-bottom: -1px;
  54. text-indent: -9999px;
  55. border-radius: 2px;
  56. -moz-border-radius: 2px;
  57. -webkit-border-radius: 2px;
  58. overflow: hidden;
  59. }
  60. .chat_line {
  61. margin-left: 3px;
  62. margin-right: 3px;
  63. padding-top: 2px;
  64. padding-bottom: 3px;
  65. line-height: 16px;
  66. }
  67.  
  68. .chat_line .message {
  69. word-break: normal;
  70. word-wrap: break-word;
  71. }
  72.  
  73. .emoticon {
  74. margin-bottom: -7px;
  75. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement