ChatOverlay.css 585 B

12345678910111213141516171819202122
  1. /*
  2. * Hatnix CSS for displaying your Owncast v.0.1.0+ chat onscreen in OBS
  3. * to be used with [Your_Owncast_URL]/embed/chat/readonly. Modified by DeadTOm.
  4. */
  5. /* the actual animation - only the last 15% are the fade out effect */
  6. @keyframes fade {
  7. 0% { opacity: 0; }
  8. 5% { opacity: 1; }
  9. 85% { opacity: 1; }
  10. 100% { opacity: 0; }
  11. }
  12. /* remove background from main chat window */
  13. body, #chat-container {
  14. background-color: transparent !important;
  15. }
  16. /* give each chatmessage a darkish background and assign the animation */
  17. #chat-container {
  18. animation: fade 60s !important;
  19. }