2024-07-07 01:58:23 +08:00
|
|
|
@import './base.css';
|
2025-11-23 01:39:44 +08:00
|
|
|
@import './base.dark.css';
|
2025-06-30 22:29:23 +08:00
|
|
|
@import './sigma.css';
|
|
|
|
|
@import './shorts.css';
|
2025-10-07 00:15:14 +08:00
|
|
|
@import './dashboard.css';
|
2026-03-02 21:01:28 +08:00
|
|
|
@import './markdown-preview.less';
|
2026-03-26 05:44:23 +08:00
|
|
|
@import './code-highlight.less';
|
2024-07-07 01:58:23 +08:00
|
|
|
|
2024-07-14 16:42:38 +08:00
|
|
|
:root {
|
2025-08-08 22:57:14 +08:00
|
|
|
--header-height: 45px;
|
2025-07-30 11:00:50 +08:00
|
|
|
--min-width: 450px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*,
|
|
|
|
|
*::before,
|
|
|
|
|
*::after {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
margin: 0;
|
|
|
|
|
position: relative;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
display: flow-root;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
color: var(--gray-900);
|
2025-11-23 01:39:44 +08:00
|
|
|
background: var(--gray-0);
|
2025-07-30 11:00:50 +08:00
|
|
|
line-height: 1.6;
|
2026-04-25 23:58:01 +08:00
|
|
|
font-family:
|
|
|
|
|
-apple-system, BlinkMacSystemFont, 'Noto Sans SC', 'Roboto', 'HarmonyOS Sans SC', 'Segoe UI',
|
|
|
|
|
'Helvetica Neue', Arial, sans-serif;
|
2025-07-30 11:00:50 +08:00
|
|
|
font-size: 15px;
|
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2024-09-01 21:14:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* layout */
|
|
|
|
|
|
|
|
|
|
.layout-container {
|
2024-09-03 16:37:59 +08:00
|
|
|
width: 100%;
|
2026-04-26 00:47:30 +08:00
|
|
|
padding: 0 var(--page-padding);
|
2024-09-01 21:14:23 +08:00
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
|
margin: 20px 0 10px 0;
|
|
|
|
|
}
|
2025-03-28 00:48:33 +08:00
|
|
|
}
|
|
|
|
|
|
2026-03-02 02:48:30 +08:00
|
|
|
.lucide-icon-btn {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
}
|
2025-03-28 00:48:33 +08:00
|
|
|
|
2026-03-02 02:48:30 +08:00
|
|
|
.lucide-icon-btn svg {
|
|
|
|
|
flex-shrink: 0;
|
2026-01-15 06:01:34 +08:00
|
|
|
}
|