Skip to content

GPT Claude 1.0 by ttmouse

Screenshot of GPT Claude 1.0

Details

Authorttmouse

LicenseNo License

Categorychat.openai.com

Created

Updated

Size5.8 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

用到了2个字体:
Using two fonts:

  1. Roboto Mono
  2. symbola

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name         GPT Claude 1.0
@version      20231001.18.14
@namespace    userstyles.world/user/ttmouse
@description  GPT+Claude
@author       ttmouse
@license      No License
==/UserStyle== */

@-moz-document domain("chat.openai.com") {
:root {
    --gray-0: #fff;
    --Claude: #f0f1ee;  /*--claude #efede7  #f1f1f18a --*/
    --gray-50: #f7f7f8;
    --gray-100: #ececf1;
    --gray-200: #d9d9e3;
    --gray-300: #c5c5d2;
    --gray-400: #acacbe;
    --gray-500: #8e8ea0;
    --gray-600: #565869;
    --gray-700: #40414f;
    --gray-800: #343541;
    --gray-900: #202123;
    --gray-950: #050509;
    }

/*
----------
*/

/* 再次编辑时候的区域的宽度 */
.m-0.resize-none.border-0.bg-transparent.p-0.focus\:ring-0.focus-visible\:ring-0{
	background-color: #d3e1d966;
	width: 864px;
}


.markdown a {
    text-decoration-line: underline;
    text-underline-offset: 2px;
    color: #5d76ff;
}

/* 调整中间展示区域的宽度 */
.xl\:max-w-3xl {
    max-width: 60rem;
}

.md\:max-w-3xl {
    max-width: 60rem;
}

/* 聊天框底部间距 */
.md\:gap-3 {
    gap: 0.1rem;
}



#menuContainer {
    width: auto;
    display: inline-block;
    background-color: #fff;
    color: #000;
    border-radius: 0.55em;
    border: 0px;
    padding: 5px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 0px 0.5px, rgba(0, 0, 0, 0.1) 0px 2px 5px, rgba(0, 0, 0, 0.05) 0px 3px 3px;
}

#menuContainer button:disabled {
    height: 1px;
    color: #c6c6c600;
    padding: 0px;
    border-bottom: 1px solid #dddddd8c;
}

#menuContainer button:disabled:hover {
    height: 1px;
    color: #c6c6c600;
    padding: 0px;
    border-bottom: 1px solid #dddddd8c;
}


#menuContainer button {
    margin-bottom: 1px;
}

#menuContainer button:hover {
    color: #2d4aff;
    background-color: #ecf0ff;
    border-radius: 5px;
    padding: 5px 10px;
    width: 100%;
    font-weight: 500;
}

#menuContainer button {
	border-radius: 5px;
	padding: 5px 10px;
	width: 100%;
    text-align: left; 
}

.settings-textarea {
    width: auto;
    display: inline-block;
    background-color: #fff;
    border-radius: 0.75em;
    border: 0px;
    padding: 18px 18px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 0.5px, rgba(0, 0, 0, 0.024) 0px 0px 5px, rgba(0, 0, 0, 0.05) 0px 1px 2px;
}


.settings-submit {
    background-color: #469c7b;
    color: #ffffff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.settings-submit {
    background-color: #469c7b;
    color: #ffffff;
    padding: 8px 18px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

.settings-content {
    background-color: #f0f1ee;
    color: #535e5e;

}

select {
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    -webkit-print-color-adjust: exact;
    border-radius: 40px;
    border: 1px solid #dedede;
    print-color-adjust: exact;
}



.markdown a {
    text-decoration-line: underline;
    text-underline-offset: 2px;
    color: #5d76ff;
}




/* 聊天内容背景   var(--gray-0); */
.lg\:w-\[calc\(100\%-115px\)\] {
	width: auto;
    display: inline-block;
    background-color: #fff; 
    border-radius: 0.75em;
    padding: 18px 18px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 0.5px, rgba(0, 0, 0, 0.024) 0px 0px 5px, rgba(0, 0, 0, 0.05) 0px 1px 2px;
}

/*--字体--  楷体-简,'方正仿宋简体', */
code, pre,
html {
    font-family:'Roboto Mono',PingFang SC !important;
    background-color: var(--Claude);
    }

.prose :where(code):not(:where([class~=not-prose] *)) {
    font-weight: normal;
}

.prose {
    color: #3a4741;
    font-family:'Roboto Mono',PingFang SC !important;
    font-size: 1rem;
    line-height: 200%;
    }


:not(pre)>code.hljs, :not(pre)>code[class*=language-] {
    white-space: pre-wrap !important;
}



/* 调整行高 */
.text-base{
    line-height: 1.5rem;
}


/*-- 代码块 --*/
.bg-black {
    background-color: var(--gray-800); 
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 0.5px, rgba(0, 0, 0, 0.024) 0px 0px 5px, rgba(0, 0, 0, 0.05) 0px 1px 2px;
    }

code.hljs, code[class*=language-], pre[class*=language-] {
    color: var(--gray-50);
    }

.hljs-comment {
    color: var(--gray-50);
    }


/*-- 分割线 --*/
.border-black\/10 {
	border: 1px solid   rgba(0, 0, 0, 0);
	border-bottom: 1px solid   rgba(0, 0, 0, 0);
    }


.prose :where(img):not(:where([class~=not-prose] *)) {
    margin-bottom: 2em;
    margin-top: -0px;
    border-radius: 4px;
}

/*-- 头像 --*/
.rounded-sm {
    border-radius: 69.125rem;
}


/*-- 无序列表图标 --*/
.markdown ul>li:before {
    content: "◍"!important;
    font-family: Symbola , 'PingFang SC' !important;
    line-height: 32px;
    padding-right: 14px;
    }

/*-- 有序列表位移 --*/
.prose :where(ol>li):not(:where([class~=not-prose] *)) {
    padding-left: 1.8em;
    }
.prose :where(ul>li):not(:where([class~=not-prose] *)) {
    padding-left: 1.8em;
    }


/*-- 背景色 --*/
.md\:bg-vert-light-gradient {
    background-image: linear-gradient(180deg,hsla(0,0%,100%,0) 13.94%,var(--Claude) 54.73%);
}




/*
.text-sm {
    background: var(--Claude);
}
*/


.bg-gray-50 {
    background-color: var(--Claude);
}
.bg-gray-100 {
    background-color: var(--gray-100);
}
.bg-gray-200 {
    background-color: var(--gray-200);
}
.bg-gray-300 {
    background-color: var(--gray-300);
}
.bg-gray-400 {
    background-color: var(--gray-400);
}
.bg-gray-500 {
    background-color: var(--gray-500);
}
.bg-gray-600 {
    background-color: var(--gray-600);
}
.bg-gray-700 {
    background-color: var(--gray-700);
}
.bg-gray-800 {
    background-color: var(--gray-700);
}
.bg-gray-900 {
    background-color: var(--gray-900);
}
.bg-gray-950 {
    background-color: var(--gray-950);
}



}

Reviews

No reviews yet.