mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
a080fa1524
* Fix various typos Found via `codespell -q 3` * Commit updated API documentation Co-authored-by: Owncast <owncast@owncast.online>
50 lines
1.2 KiB
CSS
50 lines
1.2 KiB
CSS
/*
|
|
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.
|
|
*/
|
|
|
|
/*
|
|
The styles in this file mostly override those coming from chat.css
|
|
*/
|
|
|
|
/* modify this px number if you want things to be relatively bigger or smaller */
|
|
#messages-only {}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 0px;
|
|
background: transparent;
|
|
}
|
|
|
|
#messages-only #messages-container {
|
|
height: 100%;
|
|
height: 100vh;
|
|
overflow: auto;
|
|
}
|
|
#messages-only .message-content {
|
|
text-shadow: 1px 1px 0px rgba(0,0,0,0.25);
|
|
}
|
|
#messages-only .message {
|
|
padding: .5em;
|
|
}
|
|
|
|
#messages-only .message-text {
|
|
font-weight: 400;
|
|
color: white;
|
|
}
|
|
#messages-only .message-text a {
|
|
color: #fc0;
|
|
}
|
|
#messages-only .message-author {
|
|
color: rgba(20,0,40,1);
|
|
}
|
|
|
|
#messages-only .message-text .chat-embed,
|
|
#messages-only .message-text .instagram-embed,
|
|
#messages-only .message-text .embedded-image {
|
|
max-width: 350px;
|
|
}
|