Advertisement
Rezephos

CSS Chat For Nightdev

Jun 12th, 2015
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. ::-webkit-scrollbar {
  2. visibility: hidden;
  3. }
  4. body {
  5. color: transparent;
  6. height: 100%;
  7. margin: 0px;
  8. overflow:hidden;
  9. }
  10.  
  11. .chat_line {
  12. font-family: "Segoe UI";
  13. font-size: 24px;
  14. line-height: 24px;
  15. opacity: 1 !important;
  16. }
  17.  
  18. .emoticon {
  19. margin-bottom: -5px;
  20. }
  21.  
  22. .chat_line .nick {
  23. font-weight: bold;
  24. opacity: 1
  25. text-transform: capitalize;
  26. color: #FFFFFF;
  27. }
  28. .chat_line .message {
  29. font-weight: bold;
  30. font-size: 22px;
  31. color: #FFFFFF;
  32. font-family: "Segoe UI", bold;
  33. transform: scaleY(-1);
  34. }
  35. #chat_box {
  36. font-family: "Segoe UI", bold;
  37. text-shadow:
  38. 2px 2px 0px #000, 2px 1px 0px #000, 2px 0px 0px #000, 2px -1px 0px #000, 2px -2px 0px #000,
  39. -2px 2px 0px #000, -2px 1px 0px #000, -2px 0px 0px #000, -2px -1px 0px #000, -2px -2px 0px #000,
  40. 2px 2px 0px #000, 1px 2px 0px #000, 0px 2px 0px #000, -1px 2px 0px #000, -2px 2px 0px #000,
  41. 2px -2px 0px #000, 1px -2px 0px #000, 0px -2px 0px #000, -1px -2px 0px #000, -2px -2px 0px #000 !important;
  42. position: absolute;
  43. width: 100%;
  44. bottom: 0px;
  45. height: auto;
  46. background: transparent !important;
  47.  
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement