mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-18 20:17:50 +00:00
302 lines
5.1 KiB
CSS
302 lines
5.1 KiB
CSS
.fade-in {
|
|
opacity: 0;
|
|
transition: opacity 0.5s ease-in-out;
|
|
}
|
|
.fade-in.show {
|
|
opacity: 1;
|
|
}
|
|
.spin {
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
@keyframes spin {
|
|
0% { transform: rotate(0deg); }
|
|
100% { transform: rotate(360deg); }
|
|
}
|
|
/* Dark mode styles */
|
|
.dark {
|
|
color-scheme: dark;
|
|
}
|
|
.dark body {
|
|
background-color: #1a202c;
|
|
color: #e2e8f0;
|
|
}
|
|
.dark .bg-white {
|
|
background-color: #2d3748;
|
|
}
|
|
.dark .text-gray-900 {
|
|
color: #e2e8f0;
|
|
}
|
|
.dark .hover\:bg-gray-200:hover {
|
|
background-color: #4a5568;
|
|
}
|
|
.dark .border {
|
|
border-color: #4a5568;
|
|
}
|
|
.dark input, .dark select {
|
|
background-color: #2d3748;
|
|
color: #e2e8f0;
|
|
}
|
|
.dark button {
|
|
background-color: #4a5568;
|
|
color: #e2e8f0;
|
|
}
|
|
.dark button:hover {
|
|
background-color: #718096;
|
|
}
|
|
body {
|
|
padding-bottom: 60px;
|
|
}
|
|
main {
|
|
min-height: calc(100vh - 60px);
|
|
}
|
|
#help-section {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
#help-section h2 {
|
|
text-align: center;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
#help-section h3 {
|
|
color: #553c9a;
|
|
}
|
|
#help-section .dark h3 {
|
|
color: #d6bcfa;
|
|
}
|
|
#help-section p, #help-section li {
|
|
line-height: 1.6;
|
|
}
|
|
#help-section .bg-purple-100 {
|
|
background-color: rgba(237, 233, 254, 0.5);
|
|
}
|
|
#help-section .dark .bg-purple-900 {
|
|
background-color: rgba(76, 29, 149, 0.5);
|
|
}
|
|
/* Updated styles for dark mode */
|
|
.dark #help-section {
|
|
color: #e2e8f0;
|
|
}
|
|
.dark #help-section h2 {
|
|
color: #a78bfa;
|
|
}
|
|
.dark #help-section h3 {
|
|
color: #d6bcfa;
|
|
}
|
|
.dark #help-section .bg-white {
|
|
background-color: #1a202c;
|
|
}
|
|
.dark #help-section .text-gray-600,
|
|
.dark #help-section .text-gray-700 {
|
|
color: #cbd5e0;
|
|
}
|
|
.dark #help-section .text-purple-700,
|
|
.dark #help-section .text-purple-800 {
|
|
color: #e9d8fd;
|
|
}
|
|
.dark #help-section button {
|
|
background-color: #8b5cf6;
|
|
}
|
|
.dark #help-section button:hover {
|
|
background-color: #7c3aed;
|
|
}
|
|
/* Styles for rendered Markdown */
|
|
.markdown-content h1 {
|
|
font-size: 2em;
|
|
margin-top: 0.5em;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
.markdown-content h2 {
|
|
font-size: 1.5em;
|
|
margin-top: 0.5em;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
.markdown-content h3 {
|
|
font-size: 1.17em;
|
|
margin-top: 0.5em;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
.markdown-content p {
|
|
margin-bottom: 1em;
|
|
}
|
|
.markdown-content ul, .markdown-content ol {
|
|
margin-left: 1.5em;
|
|
margin-bottom: 1em;
|
|
}
|
|
.markdown-content code {
|
|
background-color: #f0f0f0;
|
|
padding: 0.2em 0.4em;
|
|
border-radius: 3px;
|
|
font-family: monospace;
|
|
}
|
|
.markdown-content pre {
|
|
background-color: #f0f0f0;
|
|
padding: 1em;
|
|
border-radius: 5px;
|
|
overflow-x: auto;
|
|
}
|
|
.dark .markdown-content code {
|
|
background-color: #2d3748;
|
|
}
|
|
.dark .markdown-content pre {
|
|
background-color: #2d3748;
|
|
}
|
|
.ascii-art {
|
|
font-family: monospace;
|
|
white-space: pre;
|
|
background-color: #f0f0f0;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
}
|
|
.code-block-wrapper {
|
|
background-color: #f5f5f5;
|
|
border-radius: 4px;
|
|
margin: 20px 0;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.code-block-header {
|
|
padding: 10px;
|
|
background-color: #e0e0e0;
|
|
border-top-left-radius: 4px;
|
|
border-top-right-radius: 4px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.language-label {
|
|
font-weight: bold;
|
|
color: #333;
|
|
}
|
|
|
|
.copy-button {
|
|
background-color: #4CAF50;
|
|
border: none;
|
|
color: white;
|
|
padding: 5px 10px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
border-radius: 3px;
|
|
transition: background-color 0.3s ease;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.copy-button:hover {
|
|
background-color: #45a049;
|
|
}
|
|
|
|
.copy-button svg {
|
|
margin-right: 5px;
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
.copy-button.copied {
|
|
background-color: #2196F3;
|
|
}
|
|
|
|
pre.line-numbers {
|
|
margin: 0;
|
|
padding: 10px 0;
|
|
font-family: 'Courier New', Courier, monospace;
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
code {
|
|
display: block;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.code-line {
|
|
display: block;
|
|
white-space: pre;
|
|
}
|
|
|
|
.line-number {
|
|
display: inline-block;
|
|
width: 30px;
|
|
text-align: right;
|
|
color: #999;
|
|
padding-right: 10px;
|
|
user-select: none;
|
|
}
|
|
|
|
.line-content {
|
|
display: inline;
|
|
}
|
|
|
|
.code-line:hover {
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.math-display {
|
|
display: block;
|
|
margin: 1em 0;
|
|
text-align: center;
|
|
}
|
|
.math-inline {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
|
|
.code-block {
|
|
background-color: #f4f4f4;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
margin: 1em 0;
|
|
font-family: monospace;
|
|
font-size: 14px;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.code-header {
|
|
background-color: #e0e0e0;
|
|
padding: 0.5em;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.copy-button {
|
|
background-color: #4CAF50;
|
|
border: none;
|
|
color: white;
|
|
padding: 5px 10px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.code-content {
|
|
padding: 0.5em 0;
|
|
overflow-x: auto;
|
|
white-space: pre;
|
|
}
|
|
|
|
.code-line {
|
|
display: flex;
|
|
padding: 0 0.5em;
|
|
}
|
|
|
|
.line-number {
|
|
color: #999;
|
|
text-align: right;
|
|
padding-right: 1em;
|
|
user-select: none;
|
|
min-width: 2em;
|
|
}
|
|
|
|
.line-content {
|
|
flex: 1;
|
|
}
|