Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- S0N0S's Custom CSS for OBS Chat - 1440p Version
- URL: http://nightdev.com/hosted/obschat/index.html?style=clear&channel=USERNAME
- Width: 640
- Height: 224
- NOTE: Looks best with 4-12px of spacing on all sides of chat box, depending on your resolution.
- */
- /* Hide scrollbar */
- ::-webkit-scrollbar {
- visibility: hidden;
- }
- /* Hide background */
- body {
- color: transparent;
- }
- /* Increase size & weight of font to display clearly when downscaled to < 1440p */
- /* Add subtle text shadows to make text standout from background */
- .chat_line {
- font-size: 24px;
- line-height: 28px;
- margin-right: 0px;
- background-color: rgba(127, 127, 127, 0.00);
- }
- .chat_line .nick {
- text-transform: capitalize;
- color: #000;
- font-weight: bold;
- line-height: 28px;
- text-shadow: 0px 0px 2px #666, 2px 2px 0px #000;
- }
- .chat_line .message {
- color: #fff;
- font-weight: bold;
- line-height: 28px;
- text-shadow: 0px 0px 2px #666, 2px 2px 0px #000;
- }
- /* Move chat badges to compensate for adjusted line-height */
- .chat_line .tag {
- margin-bottom: 5px!important;
- }
- #chat_box .clear{
- display: block;
- }
- /* Disable BTTV emotes */
- img[class^="emoticon bttv-emo-"], img[class*="emoticon bttv-emo-"] {
- display: none !important;
- }
- /* Transparency gradient to hide clipped chat lines */
- #chat_box {
- -webkit-mask-image: -webkit-gradient(linear, left 10%, left top, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
- -webkit-mask-image: -webkit-gradient(linear, left 20%, left top, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
- }
- /* Optimize username colors for clarity on bright & dark backgrounds */
- span[style*='color: rgb(0, 0, 255);'] {color: rgb(64, 107, 227)!important;}
- span[style*='color: rgb(255, 0, 0);'] {color: rgb(227, 64, 64)!important;}
- span[style*='color: rgb(0, 128, 0);'] {color: rgb(64, 192, 64)!important;}
- span[style*='color: rgb(178, 34, 34);'] {color: rgb(192, 64, 64)!important;}
- span[style*='color: rgb(0, 0, 0);'] {color: rgb(255, 255, 255)!important;}
- span[style*='color: \#555;'] {color: rgb(255, 255, 255)!important;}
- span[style*='color: rgb(138, 43, 226);'] {color: rgb(155, 65, 240)!important;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement