Minimal ChatGPT
Minimal ChatGPT @Lulu by lushangorgin
Details
Authorlushangorgin
LicenseNo License
Categorychatgpt.com
Created
Updated
Size901 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Minimal ChatGPT @Lulu
@version 20240520.18.28
@namespace https://userstyles.world/user/lushangorgin
@description Minimal ChatGPT
@author lushangorgin
@license No License
==/UserStyle== */
@-moz-document domain("chatgpt.com") {
/* Sections = ALL + SIDEBAR + MAIN VIEW */
/* ALL */
/* Use Adwaita fonts */
html {
font-family: Cantarell !important;
}
pre, code, code > span {
font-family: Source Code Pro !important;
}
/* SIDEBAR */
/* Hide "Add Team workspace" at the bottom of the sidebar */
div.pt-2:nth-child(3) {
display: none !important;
}
/* MAIN VIEW */
/* Hide share button at the top right corner */
.pr-1 > span:nth-child(1),
/* Hide help icon in the bottom right corner */
div.group:nth-child(2) {
display: none !important;
}
/* Hide disclaimer under input field */
div.px-2 {
visibility: hidden;
padding: 4px !important;
}
}