2020-09-03 12:44:50 +03:00
|
|
|
/*
|
|
|
|
Example/Suggested custom CSS settings to set in OBS.
|
|
|
|
///
|
|
|
|
html { margin: 0px; padding: 20px; background-color: rgba(0,0,0,0.5); font-size: 24px; }
|
|
|
|
///
|
|
|
|
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.
|
|
|
|
|
|
|
|
You may change any of these settings to fit your presentation layout. Note that the overall message text color is white.
|
|
|
|
*/
|
|
|
|
|
2020-08-17 19:00:36 +03:00
|
|
|
/*
|
2022-09-30 19:42:54 +03:00
|
|
|
The styles in this file mostly override those coming from chat.css
|
2020-08-17 19:00:36 +03:00
|
|
|
*/
|
2020-08-19 10:47:41 +03:00
|
|
|
|
2020-08-24 07:23:16 +03:00
|
|
|
/* modify this px number if you want things to be relatively bigger or smaller */
|
2020-09-03 12:44:50 +03:00
|
|
|
#messages-only {}
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 0px;
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
#messages-only #messages-container {
|
|
|
|
height: 100%;
|
|
|
|
height: 100vh;
|
|
|
|
overflow: auto;
|
2020-08-19 10:47:41 +03:00
|
|
|
}
|
2020-08-24 07:23:16 +03:00
|
|
|
#messages-only .message-content {
|
2020-08-19 10:47:41 +03:00
|
|
|
text-shadow: 1px 1px 0px rgba(0,0,0,0.25);
|
|
|
|
}
|
2020-08-24 07:23:16 +03:00
|
|
|
#messages-only .message {
|
2020-08-19 10:47:41 +03:00
|
|
|
padding: .5em;
|
|
|
|
}
|
|
|
|
|
2020-08-24 07:23:16 +03:00
|
|
|
#messages-only .message-text {
|
2020-08-19 10:47:41 +03:00
|
|
|
font-weight: 400;
|
|
|
|
color: white;
|
|
|
|
}
|
2020-08-24 07:23:16 +03:00
|
|
|
#messages-only .message-text a {
|
2020-08-19 10:47:41 +03:00
|
|
|
color: #fc0;
|
|
|
|
}
|
2020-08-24 07:23:16 +03:00
|
|
|
#messages-only .message-author {
|
2020-08-19 10:47:41 +03:00
|
|
|
color: rgba(20,0,40,1);
|
|
|
|
}
|
2020-09-03 12:44:50 +03:00
|
|
|
|
|
|
|
#messages-only .message-text .chat-embed,
|
|
|
|
#messages-only .message-text .instagram-embed,
|
2021-06-07 20:57:13 +03:00
|
|
|
#messages-only .message-text .embedded-image {
|
2020-09-03 12:44:50 +03:00
|
|
|
max-width: 350px;
|
|
|
|
}
|