Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. Set: Fonts in the chat window
  2.  
  3. CSS for changing all fonts at once
  4. Works on Classic, Minimal, Modern, Circle
  5.  
  6.  
  7.  
  8. #body input, #body label, #body select, #body table, #body textarea, a, body, input, label, select, table, table#content, textarea {
  9. font-family: 'NissanBrand', sans-serif!important;
  10. }
  11. CSS style for changing fonts related with chat content/messages
  12. Works on Classic, Minimal, Modern, Circle.
  13.  
  14. table#content, a {
  15. font-family: 'Georgia', sans-serif !important;
  16. font-size: 14px;
  17. }
  18. #title #title-text, a#full-view-button, .s-maximize {
  19. font-family: 'Georgia', sans-serif !important;
  20. }
  21.  
  22. #message-placeholder {
  23. font-size: 10pt;
  24. font-family: 'Georgia', sans-serif !important;
  25. }
  26. #message {
  27. font-size: 10pt;
  28. font-family: 'Georgia', sans-serif !important;
  29. }
  30. body, table, input, textarea, select, label, #body table, #body input, #body textarea, #body select, #body label, table#content, a, button {
  31. font-family: 'Georgia', sans-serif !important;
  32. font-size: 10px;
  33. }
  34.  
  35. CSS for changing fonts for buttons only
  36. Works on Minimal, Modern, Circle.
  37.  
  38. a#dont-leave-chat, input, #body input, button {
  39. font-family: 'Georgia', sans-serif !important;
  40. font-size: 10px;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement