theme.css 507 B

123456789101112131415161718192021222324252627282930
  1. /* Theme */
  2. #chat-host {
  3. background-color: #e2e2e2;
  4. font-family: "Ubuntu", sans-serif;
  5. font-size: 13px;
  6. }
  7. #chat-host .main .messages {
  8. border: none;
  9. margin-right: 1em;
  10. background-color: #f8f8f8;
  11. }
  12. #chat-host .main .userlistWrapper {
  13. border-left: 1px solid #d0d0d0;
  14. padding-left: 1em;
  15. }
  16. #chat-host button {
  17. background-color: #751b09;
  18. color: #ffffff;
  19. padding: 1em;
  20. }
  21. #chat-host h2 {
  22. font-size: inherit;
  23. text-transform: uppercase;
  24. color: #4d4d4d;
  25. }