Initial commit
This commit is contained in:
9
README.md
Normal file
9
README.md
Normal file
@ -0,0 +1,9 @@
|
||||
# Zakarya's Gists
|
||||
|
||||
*migrated from GitHub*
|
||||
|
||||
This is a collection of small code snippets that I find useful.
|
||||
|
||||
To check the commit history of a single file (like you would on GitHub) click on the file and then click "history" on the right.
|
||||
|
||||
[My Gists on GitHub](https://gist.github.com/CZakarya)
|
37
youtube chat.css
Normal file
37
youtube chat.css
Normal file
@ -0,0 +1,37 @@
|
||||
body {background: transparent;}
|
||||
|
||||
|
||||
/* Select the style that you need */
|
||||
/*yt-live-chat-renderer {background: black;}*/
|
||||
/*yt-live-chat-renderer {background: rgb(0, 0, 0, 0.55); border-radius: 16px; padding-top: 16px;}*/
|
||||
/*yt-live-chat-renderer {background: transparent;}*/
|
||||
|
||||
|
||||
/*img.yt-img-shadow,*/ /* Profile photos */
|
||||
/*yt-live-chat-paid-message-renderer,*/ /* Donation messages */
|
||||
yt-icon-button#show-more, /* Scroll to bottom button */
|
||||
|
||||
yt-live-chat-viewer-engagement-message-renderer, /* Subscriber only notification */
|
||||
yt-live-chat-header-renderer, /* Header */
|
||||
yt-live-chat-banner-manager, /* Pinned message */
|
||||
yt-live-chat-ticker-renderer, /* Donation list (Only shows sometimes) */
|
||||
yt-reaction-control-panel-view-model, /* Reaction button */
|
||||
yt-live-chat-restricted-participation-renderer, /* Subscriber only chat */
|
||||
#panel-pages, /* Send message box */
|
||||
div#separator /* Line at the top */
|
||||
{display: none !important;}
|
||||
|
||||
|
||||
|
||||
/* W3Schools hide scrollbar */
|
||||
|
||||
/* Hide scrollbar for Chrome, Safari and Opera */
|
||||
div#item-scroller.yt-live-chat-item-list-renderer::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Hide scrollbar for IE, Edge and Firefox */
|
||||
div#item-scroller.yt-live-chat-item-list-renderer {
|
||||
-ms-overflow-style: none; /* IE and Edge */
|
||||
scrollbar-width: none; /* Firefox */
|
||||
}
|
Reference in New Issue
Block a user