2025-12-24 16:29:33 +00:00
|
|
|
.logo.vite:hover {
|
2025-12-27 16:50:18 +00:00
|
|
|
filter: drop-shadow(0 0 2em #747bff);
|
2025-12-24 16:29:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logo.react:hover {
|
2025-12-27 16:50:18 +00:00
|
|
|
filter: drop-shadow(0 0 2em #61dafb);
|
2025-12-24 16:29:33 +00:00
|
|
|
}
|
|
|
|
|
:root {
|
2025-12-27 16:50:18 +00:00
|
|
|
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
font-weight: 400;
|
2025-12-24 16:29:33 +00:00
|
|
|
|
2025-12-27 16:50:18 +00:00
|
|
|
color: #0f0f0f;
|
|
|
|
|
background-color: #f6f6f6;
|
2025-12-24 16:29:33 +00:00
|
|
|
|
2025-12-27 16:50:18 +00:00
|
|
|
font-synthesis: none;
|
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
-webkit-text-size-adjust: 100%;
|
2025-12-24 16:29:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container {
|
2025-12-27 16:50:18 +00:00
|
|
|
margin: 0;
|
|
|
|
|
padding-top: 10vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
2025-12-24 16:29:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logo {
|
2025-12-27 16:50:18 +00:00
|
|
|
height: 6em;
|
|
|
|
|
padding: 1.5em;
|
|
|
|
|
will-change: filter;
|
|
|
|
|
transition: 0.75s;
|
2025-12-24 16:29:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logo.tauri:hover {
|
2025-12-27 16:50:18 +00:00
|
|
|
filter: drop-shadow(0 0 2em #24c8db);
|
2025-12-24 16:29:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.row {
|
2025-12-27 16:50:18 +00:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
2025-12-24 16:29:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
2025-12-27 16:50:18 +00:00
|
|
|
font-weight: 500;
|
|
|
|
|
color: #646cff;
|
|
|
|
|
text-decoration: inherit;
|
2025-12-24 16:29:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:hover {
|
2025-12-27 16:50:18 +00:00
|
|
|
color: #535bf2;
|
2025-12-24 16:29:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1 {
|
2025-12-27 16:50:18 +00:00
|
|
|
text-align: center;
|
2025-12-24 16:29:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input,
|
|
|
|
|
button {
|
2025-12-27 16:50:18 +00:00
|
|
|
border-radius: 8px;
|
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
padding: 0.6em 1.2em;
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
color: #0f0f0f;
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
transition: border-color 0.25s;
|
|
|
|
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
|
2025-12-24 16:29:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button {
|
2025-12-27 16:50:18 +00:00
|
|
|
cursor: pointer;
|
2025-12-24 16:29:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button:hover {
|
2025-12-27 16:50:18 +00:00
|
|
|
border-color: #396cd8;
|
2025-12-24 16:29:33 +00:00
|
|
|
}
|
|
|
|
|
button:active {
|
2025-12-27 16:50:18 +00:00
|
|
|
border-color: #396cd8;
|
|
|
|
|
background-color: #e8e8e8;
|
2025-12-24 16:29:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input,
|
|
|
|
|
button {
|
2025-12-27 16:50:18 +00:00
|
|
|
outline: none;
|
2025-12-24 16:29:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#greet-input {
|
2025-12-27 16:50:18 +00:00
|
|
|
margin-right: 5px;
|
2025-12-24 16:29:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
2025-12-27 16:50:18 +00:00
|
|
|
:root {
|
|
|
|
|
color: #f6f6f6;
|
|
|
|
|
background-color: #2f2f2f;
|
|
|
|
|
}
|
2025-12-25 12:58:37 +00:00
|
|
|
|
2025-12-27 16:50:18 +00:00
|
|
|
a:hover {
|
|
|
|
|
color: #24c8db;
|
|
|
|
|
}
|
2025-12-25 12:58:37 +00:00
|
|
|
|
2025-12-27 16:50:18 +00:00
|
|
|
input,
|
|
|
|
|
button {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #0f0f0f98;
|
|
|
|
|
}
|
|
|
|
|
button:active {
|
|
|
|
|
background-color: #0f0f0f69;
|
|
|
|
|
}
|
2025-12-24 16:29:33 +00:00
|
|
|
}
|
2025-12-25 15:18:12 +00:00
|
|
|
|
|
|
|
|
/* Collapsible tool output styling */
|
|
|
|
|
details summary {
|
2025-12-27 16:50:18 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
user-select: none;
|
2025-12-25 15:18:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
details summary::-webkit-details-marker {
|
2025-12-27 16:50:18 +00:00
|
|
|
display: none;
|
2025-12-25 15:18:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
details[open] summary span:first-child {
|
2025-12-27 16:50:18 +00:00
|
|
|
transform: rotate(90deg);
|
|
|
|
|
display: inline-block;
|
|
|
|
|
transition: transform 0.2s ease;
|
2025-12-25 15:18:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
details summary span:first-child {
|
2025-12-27 16:50:18 +00:00
|
|
|
transition: transform 0.2s ease;
|
2025-12-25 15:18:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Markdown body styling for dark theme */
|
|
|
|
|
.markdown-body {
|
2025-12-27 16:50:18 +00:00
|
|
|
color: #ececec;
|
|
|
|
|
text-align: left;
|
2025-12-25 15:18:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown-body code {
|
2025-12-27 16:50:18 +00:00
|
|
|
background: #2f2f2f;
|
|
|
|
|
padding: 2px 6px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
font-family: monospace;
|
2025-12-25 15:18:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown-body pre {
|
2025-12-27 16:50:18 +00:00
|
|
|
background: #1a1a1a;
|
|
|
|
|
padding: 12px;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
overflow-x: auto;
|
|
|
|
|
text-align: left;
|
2025-12-25 15:18:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown-body pre code {
|
2025-12-27 16:50:18 +00:00
|
|
|
background: transparent;
|
|
|
|
|
padding: 0;
|
2025-12-25 15:18:12 +00:00
|
|
|
}
|
2025-12-25 15:23:49 +00:00
|
|
|
|
2025-12-25 15:39:22 +00:00
|
|
|
/* Syntax highlighter styling */
|
|
|
|
|
.markdown-body div[class*="language-"] {
|
2025-12-27 16:50:18 +00:00
|
|
|
margin: 0;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
text-align: left;
|
2025-12-25 15:39:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown-body pre[class*="language-"] {
|
2025-12-27 16:50:18 +00:00
|
|
|
margin: 0;
|
|
|
|
|
padding: 12px;
|
|
|
|
|
background: #1a1a1a;
|
|
|
|
|
text-align: left;
|
2025-12-25 15:39:22 +00:00
|
|
|
}
|
|
|
|
|
|
2025-12-25 15:23:49 +00:00
|
|
|
/* Hide scroll bars globally while maintaining scroll functionality */
|
|
|
|
|
/* Firefox */
|
|
|
|
|
* {
|
2025-12-27 16:50:18 +00:00
|
|
|
scrollbar-width: none;
|
2025-12-25 15:23:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Chrome, Safari, Edge */
|
|
|
|
|
*::-webkit-scrollbar {
|
2025-12-27 16:50:18 +00:00
|
|
|
display: none;
|
2025-12-25 15:23:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Ensure scroll functionality is maintained */
|
|
|
|
|
body,
|
|
|
|
|
html {
|
2025-12-27 16:50:18 +00:00
|
|
|
overflow-x: hidden;
|
2025-12-25 15:23:49 +00:00
|
|
|
}
|