183 lines
4.6 KiB
CSS
183 lines
4.6 KiB
CSS
:root {
|
|
font-family: 'Pretendard', 'Inter', 'Segoe UI', sans-serif;
|
|
line-height: 1.5;
|
|
font-weight: 400;
|
|
color: var(--theme-text);
|
|
background: var(--theme-body-bg);
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
--theme-body-bg: #121212;
|
|
--theme-shell-bg: rgba(14, 14, 14, 0.96);
|
|
--theme-rail-bg: rgba(14, 14, 14, 0.92);
|
|
--theme-main-bg: rgba(18, 18, 18, 0.98);
|
|
--theme-workspace-bg: rgba(24, 24, 24, 0.92);
|
|
--theme-card-bg: rgba(62, 62, 62, 0.82);
|
|
--theme-card-bg-hover: rgba(70, 70, 70, 0.96);
|
|
--theme-card-border: rgba(255, 255, 255, 0.16);
|
|
--theme-card-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
|
|
--theme-surface-soft: rgba(255, 255, 255, 0.05);
|
|
--theme-surface-soft-2: rgba(255, 255, 255, 0.06);
|
|
--theme-surface-soft-3: rgba(255, 255, 255, 0.08);
|
|
--theme-pill-bg: rgba(255, 255, 255, 0.03);
|
|
--theme-border: rgba(255, 255, 255, 0.08);
|
|
--theme-border-strong: rgba(255, 255, 255, 0.12);
|
|
--theme-text: rgba(255, 255, 255, 0.92);
|
|
--theme-text-strong: rgba(255, 255, 255, 0.98);
|
|
--theme-text-muted: rgba(255, 255, 255, 0.74);
|
|
--theme-text-soft: rgba(255, 255, 255, 0.62);
|
|
--theme-text-faint: rgba(255, 255, 255, 0.4);
|
|
--theme-thumb-fallback-bg: #555;
|
|
--theme-select-arrow: rgba(255, 255, 255, 0.68);
|
|
--theme-danger-bg: rgba(239, 68, 68, 0.1);
|
|
--theme-danger-border: rgba(239, 68, 68, 0.18);
|
|
--theme-accent-bg: rgba(76, 133, 245, 0.92);
|
|
--theme-accent-text: #fff;
|
|
--theme-icon-filter: brightness(0) saturate(100%) invert(94%) sepia(6%) saturate(207%) hue-rotate(186deg) brightness(96%) contrast(92%);
|
|
}
|
|
|
|
:root[data-theme='light'] {
|
|
--theme-body-bg: #e7ebf2;
|
|
--theme-shell-bg: rgba(237, 241, 247, 0.98);
|
|
--theme-rail-bg: rgba(243, 246, 251, 0.97);
|
|
--theme-main-bg: rgba(232, 236, 243, 0.98);
|
|
--theme-workspace-bg: rgba(247, 249, 252, 0.96);
|
|
--theme-card-bg: rgba(252, 253, 255, 0.98);
|
|
--theme-card-bg-hover: rgba(244, 247, 251, 0.98);
|
|
--theme-card-border: rgba(31, 41, 55, 0.11);
|
|
--theme-card-shadow: 0 18px 34px rgba(31, 41, 55, 0.07);
|
|
--theme-surface-soft: rgba(30, 41, 59, 0.055);
|
|
--theme-surface-soft-2: rgba(30, 41, 59, 0.075);
|
|
--theme-surface-soft-3: rgba(30, 41, 59, 0.105);
|
|
--theme-pill-bg: rgba(30, 41, 59, 0.045);
|
|
--theme-border: rgba(30, 41, 59, 0.11);
|
|
--theme-border-strong: rgba(30, 41, 59, 0.16);
|
|
--theme-text: rgba(20, 27, 40, 0.92);
|
|
--theme-text-strong: rgba(10, 15, 28, 0.98);
|
|
--theme-text-muted: rgba(55, 65, 81, 0.76);
|
|
--theme-text-soft: rgba(75, 85, 99, 0.72);
|
|
--theme-text-faint: rgba(100, 116, 139, 0.88);
|
|
--theme-thumb-fallback-bg: #f6f8fb;
|
|
--theme-select-arrow: rgba(55, 65, 81, 0.74);
|
|
--theme-danger-bg: rgba(239, 68, 68, 0.1);
|
|
--theme-danger-border: rgba(239, 68, 68, 0.22);
|
|
--theme-accent-bg: rgba(64, 110, 226, 0.94);
|
|
--theme-accent-text: #fff;
|
|
--theme-icon-filter: brightness(0) saturate(100%) invert(14%) sepia(14%) saturate(652%) hue-rotate(182deg) brightness(95%) contrast(91%);
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#app {
|
|
min-height: 100vh;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
background: var(--theme-body-bg);
|
|
color: var(--theme-text);
|
|
transition: background 220ms ease, color 220ms ease;
|
|
}
|
|
|
|
button,
|
|
input,
|
|
select,
|
|
textarea {
|
|
font: inherit;
|
|
}
|
|
|
|
button {
|
|
appearance: none;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
}
|
|
|
|
input,
|
|
select,
|
|
textarea {
|
|
color: var(--theme-text);
|
|
}
|
|
|
|
select {
|
|
appearance: none;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
background-image:
|
|
linear-gradient(45deg, transparent 50%, var(--theme-select-arrow) 50%),
|
|
linear-gradient(135deg, var(--theme-select-arrow) 50%, transparent 50%);
|
|
background-position:
|
|
calc(100% - 20px) calc(50% - 2px),
|
|
calc(100% - 14px) calc(50% - 2px);
|
|
background-size: 6px 6px, 6px 6px;
|
|
background-repeat: no-repeat;
|
|
padding-right: 40px;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
#app {
|
|
width: 100%;
|
|
}
|
|
|
|
.pageWrap {
|
|
display: grid;
|
|
gap: 18px;
|
|
}
|
|
|
|
.pageHead {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
gap: 16px;
|
|
flex-wrap: wrap;
|
|
min-height: 96px;
|
|
padding: 0;
|
|
}
|
|
|
|
.pageHead__main {
|
|
display: grid;
|
|
align-content: start;
|
|
gap: 6px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.pageHead__eyebrow {
|
|
font-size: 11px;
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
color: var(--theme-text-soft);
|
|
}
|
|
|
|
.pageHead__title {
|
|
font-size: 32px;
|
|
line-height: 1.05;
|
|
letter-spacing: -0.04em;
|
|
color: var(--theme-text-strong);
|
|
}
|
|
|
|
.pageHead__desc {
|
|
max-width: 720px;
|
|
color: var(--theme-text-muted);
|
|
}
|
|
|
|
.pageHead__aside {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: flex-end;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
}
|