A new userstyle
chat.openai.com - 6/23/2023, 2:55:43 AM by fergo92
Details
Authorfergo92
LicenseNo License
Categorychat.openai.com
Created
Updated
Code size3.1 kB
Code checksum1038be1a
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name chat.openai.com - 6/23/2023, 2:55:43 AM
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document domain(chat.openai.com)/* Global Styles */
{
body
{
background-color: #f2f5f8;
color: #333333;
font-family: "Helvetica Neue", Arial, sans-serif;
line-height: 1.6;
}
/* Header Styles */
.header
{
background-color: #6f42c1;
color: #ffffff;
padding: 10px;
font-weight: bold;
}
/* Main Content Styles */
.content
{
margin: 20px;
}
/* Scrollbar Styles */
::-webkit-scrollbar
{
width: 12px;
height: 12px;
}
::-webkit-scrollbar-thumb
{
background-color: #555555;
border-radius: 6px;
}
::-webkit-scrollbar-track
{
background-color: #d3d3d3;
border-radius: 6px;
}
/* Small Area with Light Blues and Purple */
.custom-area
{
background-color: #e5f0ff;
color: #6f42c1;
padding: 5px;
border-radius: 4px;
font-size: 14px;
}
/* Efficiency Improvements */
.message
{
margin-bottom: 10px;
}
.custom-area
{
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.fab::after
{
content: "";
display: block;
width: 10px;
height: 10px;
border-radius: 50%;
border: 2px solid #ffffff;
border-top-color: transparent;
animation: spin 1s linear infinite;
position: absolute;
}
@keyframes spin
{
to
{
transform: rotate(360deg);
}
}
/* Additional Enhancements */
.message-text
{
color: #333333;
}
.message-text .keyword
{
font-weight: bold;
color: #6f42c1;
}
.message-timestamp
{
font-size: 12px;
color: #999999;
margin-top: 5px;
}
.message + .message
{
margin-top: 10px;
}
.message:nth-child(even)
{
background-color: #f5f5f5;
}
/* Code Syntax Highlighting */
.message-code
{
background-color: #f8f8f8;
border-radius: 4px;
padding: 10px;
font-family: "Courier New", monospace;
font-size: 14px;
color: #333333;
}
.message-code pre
{
counter-reset: line;
}
.message-code pre span::before
{
counter-increment: line;
content: counter(line);
display: inline-block;
width: 2em;
margin-right: 1em;
color: #999999;
}
.message-code pre
{
overflow-x: auto;
white-space: pre-wrap;
word-wrap: break-word;
scrollbar-width: none;
-ms-overflow-style: none;
}
.message-code pre::-webkit-scrollbar
{
display: none;
}
/* Floating Action Button */
.fab
{
position: fixed;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
background-color: #3498db;
border-radius: 50%;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
display: flex;
justify-content: center;
align-items: center;
color: #ffffff;
font-size: 24px;
z-index: 9999;
}
/* ==UserStyle==
@name OpenAI Chat Window - Desktop (Efficiency Expert Edition)
@namespace your-namespace
@version 1.0.0
@description Expertly customized styling for the OpenAI chat window on desktop, prioritizing maximum efficiency, aesthetics, and innovative features
==/UserStyle== */
}