Profile Buttons Minimize
Profile Buttons Minimize
@keyframes gear-spin-forward {
    from { transform: rotate(0deg); }
    to { transform: rotate(180deg); }
}

@keyframes gear-spin-reverse {
    from { transform: rotate(180deg); }
    to { transform: rotate(0deg); }
}

section[class*="panels__"] div[class*="buttons__"]:not(:hover) > :not(button[aria-label="User Settings"]) {
    opacity: 0 !important;
    width: 0px !important;
    padding: 0 !important;
    margin: 0 !important;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}

section[class*="panels__"] div[class*="buttons__"]:not(:hover) button[aria-label="User Settings"] [class*="contents__"] {
    animation: gear-spin-reverse 0.8s ease-in-out 1;
}

section[class*="panels__"] div[class*="buttons__"]:hover > * {
    opacity: 1 !important;
    width: 32px !important;
    pointer-events: auto;
    transition: all 0.6s ease-in-out;
}

section[class*="panels__"] div[class*="buttons__"]:hover button[aria-label="User Settings"] [class*="contents__"] {
    animation: gear-spin-forward 0.8s ease-out 1;
}

section[class*="panels__"] button[aria-label="User Settings"] {
    opacity: 1 !important;
    width: 32px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
Hides the nitro shop button
Hides the nitro shop button
[class*="channel__"] [href="/store"] {
    display: none !important;
}
Fixes the color of game toggle button
Fixes the color of game toggle button
button[class*="button__"][class*="lookBlank__"] {
    color: hsla(0, 0%, 100%, .9) !important;
}
Makes text channels have capitalization and spaces instead of dashes
Makes text channels have capitalization and spaces instead of dashes
[data-list-item-id^=channels___],
[class^=titleWrapper] > h1, 
[class^=resultChannel], 
[class^=channelMention], 
[class^=placeholder][class*=slateTextArea] 
{
    text-transform: capitalize;
}

@font-face {
    font-family: "Dashless";
    src: url("https://vendicated.github.io/random-files/Dashless.woff2") format("woff2");
}

[data-list-item-id^=channels___], /* channel list */
[class^=titleWrapper] > h1, /* top bar with topic */
[class^=resultChannel], /* channel name in search */
[class^=channelMention], /* channel mentions in chat */
[class^=placeholder][class*=slateTextArea] /* "Send a message in #blah" */
{
    font-family: "Dashless", var(--font-primary);
}
CSS Snippet Copied!