Files
storkit/src/App.css

193 lines
3.1 KiB
CSS
Raw Normal View History

2025-12-24 16:29:33 +00:00
.logo.vite:hover {
filter: drop-shadow(0 0 2em #747bff);
2025-12-24 16:29:33 +00:00
}
.logo.react:hover {
filter: drop-shadow(0 0 2em #61dafb);
2025-12-24 16:29:33 +00:00
}
:root {
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
color: #0f0f0f;
background-color: #f6f6f6;
2025-12-24 16:29:33 +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 {
margin: 0;
padding-top: 10vh;
display: flex;
flex-direction: column;
justify-content: center;
2025-12-24 16:29:33 +00:00
}
.logo {
height: 6em;
padding: 1.5em;
will-change: filter;
transition: 0.75s;
2025-12-24 16:29:33 +00:00
}
.logo.tauri:hover {
filter: drop-shadow(0 0 2em #24c8db);
2025-12-24 16:29:33 +00:00
}
.row {
display: flex;
justify-content: center;
2025-12-24 16:29:33 +00:00
}
a {
font-weight: 500;
color: #646cff;
text-decoration: inherit;
2025-12-24 16:29:33 +00:00
}
a:hover {
color: #535bf2;
2025-12-24 16:29:33 +00:00
}
h1 {
text-align: center;
2025-12-24 16:29:33 +00:00
}
input,
button {
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 {
cursor: pointer;
2025-12-24 16:29:33 +00:00
}
button:hover {
border-color: #396cd8;
2025-12-24 16:29:33 +00:00
}
button:active {
border-color: #396cd8;
background-color: #e8e8e8;
2025-12-24 16:29:33 +00:00
}
input,
button {
outline: none;
2025-12-24 16:29:33 +00:00
}
#greet-input {
margin-right: 5px;
2025-12-24 16:29:33 +00:00
}
@media (prefers-color-scheme: dark) {
:root {
color: #f6f6f6;
background-color: #2f2f2f;
}
a:hover {
color: #24c8db;
}
input,
button {
color: #ffffff;
background-color: #0f0f0f98;
}
button:active {
background-color: #0f0f0f69;
}
2025-12-24 16:29:33 +00:00
}
/* Collapsible tool output styling */
details summary {
cursor: pointer;
user-select: none;
}
details summary::-webkit-details-marker {
display: none;
}
details[open] summary span:first-child {
transform: rotate(90deg);
display: inline-block;
transition: transform 0.2s ease;
}
details summary span:first-child {
transition: transform 0.2s ease;
}
/* Markdown body styling for dark theme */
.markdown-body {
color: #ececec;
text-align: left;
}
.markdown-body code {
background: #2f2f2f;
padding: 2px 6px;
border-radius: 3px;
font-family: monospace;
}
.markdown-body pre {
background: #1a1a1a;
padding: 12px;
border-radius: 6px;
overflow-x: auto;
text-align: left;
}
.markdown-body pre code {
background: transparent;
padding: 0;
}
/* Syntax highlighter styling */
.markdown-body div[class*="language-"] {
margin: 0;
border-radius: 6px;
text-align: left;
}
.markdown-body pre[class*="language-"] {
margin: 0;
padding: 12px;
background: #1a1a1a;
text-align: left;
}
/* Hide scroll bars globally while maintaining scroll functionality */
/* Firefox */
* {
scrollbar-width: none;
}
/* Chrome, Safari, Edge */
*::-webkit-scrollbar {
display: none;
}
/* Ensure scroll functionality is maintained */
body,
html {
overflow-x: hidden;
}