changes fonts and removes some bloat
better chatgpt by endercat126
Details
Authorendercat126
LicenseUnlicense
Categorychatgpt
Created
Updated
Size1.0 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name better chatgpt
@namespace https://codeberg.org/endercat
@version 1.0.0
@description changes some fonts and removes bloat
@author amethyst
@preprocessor less
==/UserStyle== */
@-moz-document domain("chatgpt.com") {
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Noto+Color+Emoji&family=Rubik:wght@400;600&display=swap');
@import url(' https://cdn.jsdelivr.net/npm/nerdfonts-web@1.0.1/nf.min.css');
// hide bloat
.dark\:border-white\/20.empty\:hidden.py-2.flex-col.flex,
.screen-arch\:py-\[7px\].screen-arch\:bg-transparent.screen-arch\:relative.p-2.gap-2\.5.items-center.flex.text-sm.h-9.bg-\[var\(--item-background-color\)\].active\:opacity-90.rounded-lg.group.no-draggable {
display: none;
}
@font-text: 'Rubik', sans-serif, 'Noto Color Emoji', 'NerdFontsSymbols Nerd Font';
@font-code: 'JetBrains Mono', monospace, @font-text;
* {
font-family: @font-text;
}
code, pre * {
font-family: @font-code !important;
}
}