Last active
August 9, 2021 18:09
-
-
Save Decimation/08b16652f1a6b675f833bdb038b17755 to your computer and use it in GitHub Desktop.
Clean Discord CSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ========== | |
Discord.css by Decimation (https://github.com/Decimation) | |
========== */ | |
/* Hide Nitro gift button */ | |
button[aria-label="Send a gift"] { | |
display: none; | |
} | |
/* Hide Nitro sticker button */ | |
button[aria-label="Open sticker picker"] { | |
display: none; | |
} | |
/* Hide Stickers button */ | |
div[aria-label="Stickers"] { | |
display: none; | |
} | |
/* Hide Nitro popup */ | |
.premiumPromo-fVlLu-{ | |
display: none; | |
} | |
/* Hide Server Boost button */ | |
div[aria-label="Server Boost Status"] { | |
display: none; | |
} | |
/* Hide Stage Discovery in DM menu */ | |
.private-channels-2, | |
a[href="/discovery"] { | |
display: none; | |
} | |
/* Hide Nitro button in DM menu */ | |
.private-channels-1, | |
a[href="/store"] { | |
display: none; | |
} | |
/* Hide Stickers menu in GIF/emoji picker */ | |
#guild-header-popout-premium-subscribe, | |
#sticker-picker-tab { | |
display: none; | |
} | |
/* Hide annoying sticker popup window that appears when you type */ | |
.da-channelTextArea>.container-JHR0NT { | |
display: none; | |
} | |
/* Fonts */ | |
@import url('http://fonts.cdnfonts.com/css/bariol'); | |
/* ::placeholder, | |
body, | |
button, | |
input, | |
select, | |
textarea { | |
--font-primary: 'Calibri', sans-serif; | |
--font-display: 'Calibri', sans-serif; | |
} */ | |
/*font-family: 'Bariol', sans-serif; | |
font-weight: 400; | |
font-style: normal; | |
font-variant: normal; | |
font-kerning:normal; | |
line-height: normal; | |
text-rendering: geometricPrecision; | |
font-size: 16px; | |
font-size-adjust: none; | |
font-stretch: 100%;*/ | |
/* font-family: 'Calibri'; | |
font-weight: 400; | |
font-style: normal; | |
text-rendering: optimizeLegibility; | |
font-kerning: auto; */ | |
/*div[class*="message"]{ | |
font-family: Roboto; | |
}*/ | |
/*div[class*="message"]{ | |
font-family: 'Calibri'; | |
}*/ | |
/*:root { | |
--font-primary: 'Calibri', "Helvetica Neue", Helvetica, Arial, sans-serif; | |
--font-display: 'Calibri', "Helvetica Neue", Helvetica, Arial, sans-serif; | |
}*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment