Advertisement
Guest User

chatcss

a guest
Jun 30th, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. body {
  2. background-color: rgba(0, 0, 0, 0);
  3. margin: 0px auto;
  4. overflow: hidden;
  5. }
  6.  
  7. ::-webkit-scrollbar {
  8. visibility: hidden;
  9. }
  10.  
  11. #chat_box.light {
  12. background: rgba(0,0,0,0.3);
  13. color: #fff;
  14. font-family: Arial;
  15. font-size: 24px;
  16. width: 100%;
  17. height: 100%;
  18. border-bottom-left-radius: 10px;
  19. border-bottom-right-radius: 10px;
  20. border-top-left-radius: 10px;
  21. border-top-right-radius: 10px;
  22. }
  23.  
  24. .chat_line {
  25. line-height: 24px;
  26. text-shadow: 2px 2px #000000;
  27. }
  28.  
  29. .chat_line .message {
  30. word-break: break-word !important;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement