standalone-chat-readonly.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. Example/Suggested custom CSS settings to set in OBS.
  3. ///
  4. html { margin: 0px; padding: 20px; background-color: rgba(0,0,0,0.5); font-size: 24px; }
  5. ///
  6. This one will add some space around box, give it a semi-transparent dark background; and increase the overall to a base unit of 24px.
  7. You may change any of these settings to fit your presentation layout. Note that the overall message text color is white.
  8. */
  9. /*
  10. The styles in this file mostly ovveride those coming from chat.css
  11. */
  12. /* modify this px number if you want things to be relatively bigger or smaller */
  13. #messages-only {}
  14. ::-webkit-scrollbar {
  15. width: 0px;
  16. background: transparent;
  17. }
  18. #messages-only #messages-container {
  19. height: 100%;
  20. height: 100vh;
  21. overflow: auto;
  22. }
  23. #messages-only .message-content {
  24. text-shadow: 1px 1px 0px rgba(0,0,0,0.25);
  25. }
  26. #messages-only .message {
  27. padding: .5em;
  28. }
  29. #messages-only .message-text {
  30. font-weight: 400;
  31. color: white;
  32. }
  33. #messages-only .message-text a {
  34. color: #fc0;
  35. }
  36. #messages-only .message-author {
  37. color: rgba(20,0,40,1);
  38. }
  39. #messages-only .message-text .chat-embed,
  40. #messages-only .message-text .instagram-embed,
  41. #messages-only .message-text .embedded-image {
  42. max-width: 350px;
  43. }