Advertisement
Guest User

OBSCSS

a guest
May 27th, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.72 KB | None | 0 0
  1. /*Make actual page background invisible, format fonts and sizes*/
  2. body {
  3.   background-color: rgba(0, 0, 0, 0);
  4.   margin: 0px auto;
  5.   overflow: hidden;
  6.   font-family: Arial, Helvetica, sans-serif;
  7.   font-size: 20px;
  8. }
  9.  
  10. /*How does each chatter's name look?*/
  11. .from
  12. {
  13.   font-size: 22px;
  14.   font-weight: bold;
  15. }
  16.  
  17. /*How does the actual chat message look?*/
  18. .message
  19. {
  20.   font-size: 20px;
  21. }
  22.  
  23. /*Remove chat background*/
  24. .chat-room
  25. {
  26.   background-color: rgba(0,0,0,0);
  27.   margin: 0px auto;
  28.   overflow: hidden;
  29. }
  30.  
  31. /*Remove inner chat background*/
  32. .ember-view
  33. {
  34.   background-color: rgba(0,0,0,0);
  35. }
  36.  
  37. /*Remove background borders and outer container*/
  38. .ember-chat-container
  39. {
  40.   background-color: rgba(0,0,0,0);
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement