855 lines
16 KiB
CSS
855 lines
16 KiB
CSS
|
|
:root {
|
||
|
|
font-family:
|
||
|
|
-apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC",
|
||
|
|
"Microsoft YaHei", sans-serif;
|
||
|
|
color: #eaf2ff;
|
||
|
|
background: #050a13;
|
||
|
|
font-synthesis: none;
|
||
|
|
--bg: #050a13;
|
||
|
|
--panel: rgba(9, 23, 41, 0.78);
|
||
|
|
--panel2: rgba(12, 30, 52, 0.68);
|
||
|
|
--line: rgba(151, 191, 230, 0.18);
|
||
|
|
--muted: #92a8be;
|
||
|
|
--text: #eaf2ff;
|
||
|
|
--gold: #f0c56b;
|
||
|
|
--blue: #69b9f3;
|
||
|
|
--green: #76d99c;
|
||
|
|
--danger: #ff8f93;
|
||
|
|
}
|
||
|
|
* {
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
body {
|
||
|
|
margin: 0;
|
||
|
|
min-width: 760px;
|
||
|
|
min-height: 100vh;
|
||
|
|
overflow: hidden;
|
||
|
|
background:
|
||
|
|
radial-gradient(ellipse at 55% 35%, #0b3151 0, transparent 33%),
|
||
|
|
linear-gradient(180deg, #06101f 0%, #071628 54%, #030911 100%);
|
||
|
|
}
|
||
|
|
button,
|
||
|
|
input,
|
||
|
|
textarea {
|
||
|
|
font: inherit;
|
||
|
|
}
|
||
|
|
button {
|
||
|
|
color: inherit;
|
||
|
|
}
|
||
|
|
.app-shell {
|
||
|
|
height: 100vh;
|
||
|
|
display: grid;
|
||
|
|
grid-template: 48px 1fr/244px 1fr;
|
||
|
|
background: linear-gradient(
|
||
|
|
180deg,
|
||
|
|
rgba(2, 9, 19, 0.22),
|
||
|
|
rgba(2, 8, 15, 0.7)
|
||
|
|
);
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
.app-shell:after {
|
||
|
|
content: "";
|
||
|
|
position: fixed;
|
||
|
|
inset: 48px 0 0 244px;
|
||
|
|
pointer-events: none;
|
||
|
|
opacity: 0.26;
|
||
|
|
background-image:
|
||
|
|
radial-gradient(circle at 12% 14%, #fff 0 1px, transparent 1.5px),
|
||
|
|
radial-gradient(circle at 74% 8%, #badaff 0 1px, transparent 1.5px),
|
||
|
|
radial-gradient(circle at 52% 26%, #fff 0 1px, transparent 1.5px);
|
||
|
|
background-size:
|
||
|
|
260px 230px,
|
||
|
|
340px 290px,
|
||
|
|
440px 360px;
|
||
|
|
}
|
||
|
|
.titlebar {
|
||
|
|
grid-column: 1/-1;
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: 1fr auto 1fr;
|
||
|
|
align-items: center;
|
||
|
|
border-bottom: 1px solid var(--line);
|
||
|
|
background: rgba(3, 11, 22, 0.82);
|
||
|
|
backdrop-filter: blur(24px);
|
||
|
|
z-index: 5;
|
||
|
|
}
|
||
|
|
.traffic {
|
||
|
|
display: flex;
|
||
|
|
gap: 8px;
|
||
|
|
padding-left: 18px;
|
||
|
|
}
|
||
|
|
.traffic i {
|
||
|
|
width: 12px;
|
||
|
|
height: 12px;
|
||
|
|
border-radius: 50%;
|
||
|
|
background: #ff6259;
|
||
|
|
}
|
||
|
|
.traffic i:nth-child(2) {
|
||
|
|
background: #ffbd2e;
|
||
|
|
}
|
||
|
|
.traffic i:nth-child(3) {
|
||
|
|
background: #28c941;
|
||
|
|
}
|
||
|
|
.titlebar > span {
|
||
|
|
font-size: 14px;
|
||
|
|
font-weight: 560;
|
||
|
|
}
|
||
|
|
.titlebar .version {
|
||
|
|
justify-self: end;
|
||
|
|
margin-right: 18px;
|
||
|
|
color: #738aa0;
|
||
|
|
font-size: 11px;
|
||
|
|
}
|
||
|
|
.rail {
|
||
|
|
grid-row: 2;
|
||
|
|
padding: 26px 14px 18px;
|
||
|
|
border-right: 1px solid var(--line);
|
||
|
|
background: rgba(3, 11, 22, 0.68);
|
||
|
|
backdrop-filter: blur(22px);
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
z-index: 3;
|
||
|
|
}
|
||
|
|
.brand-orbit {
|
||
|
|
height: 96px;
|
||
|
|
display: grid;
|
||
|
|
place-items: center;
|
||
|
|
}
|
||
|
|
.brand-orbit span,
|
||
|
|
.lake-mark {
|
||
|
|
display: block;
|
||
|
|
width: 54px;
|
||
|
|
height: 54px;
|
||
|
|
border: 1px solid rgba(240, 197, 107, 0.7);
|
||
|
|
border-radius: 50%;
|
||
|
|
box-shadow:
|
||
|
|
0 0 22px rgba(240, 197, 107, 0.17),
|
||
|
|
inset 0 0 18px rgba(240, 197, 107, 0.09);
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
.brand-orbit span:before,
|
||
|
|
.lake-mark:before {
|
||
|
|
content: "";
|
||
|
|
position: absolute;
|
||
|
|
left: 10px;
|
||
|
|
right: 10px;
|
||
|
|
top: 26px;
|
||
|
|
height: 1px;
|
||
|
|
background: linear-gradient(90deg, transparent, var(--gold), transparent);
|
||
|
|
box-shadow: 0 5px 7px rgba(240, 197, 107, 0.55);
|
||
|
|
}
|
||
|
|
.brand-orbit span:after,
|
||
|
|
.lake-mark:after {
|
||
|
|
content: "✦";
|
||
|
|
position: absolute;
|
||
|
|
inset: 0;
|
||
|
|
display: grid;
|
||
|
|
place-items: center;
|
||
|
|
color: #f8d98c;
|
||
|
|
text-shadow: 0 0 13px var(--gold);
|
||
|
|
}
|
||
|
|
nav {
|
||
|
|
display: grid;
|
||
|
|
gap: 6px;
|
||
|
|
margin-top: 14px;
|
||
|
|
}
|
||
|
|
nav button {
|
||
|
|
border: 0;
|
||
|
|
background: transparent;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 13px;
|
||
|
|
padding: 12px 14px;
|
||
|
|
border-radius: 12px;
|
||
|
|
color: #b8c7d7;
|
||
|
|
text-align: left;
|
||
|
|
font-size: 14px;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
nav button svg {
|
||
|
|
width: 21px;
|
||
|
|
height: 21px;
|
||
|
|
}
|
||
|
|
nav button:hover {
|
||
|
|
background: rgba(255, 255, 255, 0.045);
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
nav button.active {
|
||
|
|
color: #f7dc9a;
|
||
|
|
background: linear-gradient(
|
||
|
|
90deg,
|
||
|
|
rgba(153, 103, 26, 0.38),
|
||
|
|
rgba(255, 255, 255, 0.025)
|
||
|
|
);
|
||
|
|
box-shadow: inset 2px 0 var(--gold);
|
||
|
|
}
|
||
|
|
.channel-mini {
|
||
|
|
margin-top: auto;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 10px;
|
||
|
|
padding: 11px;
|
||
|
|
}
|
||
|
|
.mini-lake {
|
||
|
|
width: 36px;
|
||
|
|
height: 36px;
|
||
|
|
border-radius: 50%;
|
||
|
|
background: radial-gradient(
|
||
|
|
circle at 50% 58%,
|
||
|
|
#e5c477 0 2%,
|
||
|
|
#236b8f 5%,
|
||
|
|
#08182c 42%,
|
||
|
|
#020811 70%
|
||
|
|
);
|
||
|
|
box-shadow: 0 0 14px rgba(105, 185, 243, 0.3);
|
||
|
|
}
|
||
|
|
.channel-mini strong,
|
||
|
|
.channel-mini small {
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.channel-mini strong {
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
.channel-mini small {
|
||
|
|
font-size: 9px;
|
||
|
|
color: #70879d;
|
||
|
|
margin-top: 3px;
|
||
|
|
}
|
||
|
|
main {
|
||
|
|
grid-column: 2;
|
||
|
|
grid-row: 2;
|
||
|
|
overflow: auto;
|
||
|
|
z-index: 1;
|
||
|
|
}
|
||
|
|
.page {
|
||
|
|
width: min(1240px, 100%);
|
||
|
|
min-height: calc(100vh - 48px);
|
||
|
|
margin: auto;
|
||
|
|
padding: 38px 40px 30px;
|
||
|
|
}
|
||
|
|
.page > header {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
margin-bottom: 25px;
|
||
|
|
}
|
||
|
|
.page h1 {
|
||
|
|
font-size: 30px;
|
||
|
|
line-height: 1.2;
|
||
|
|
margin: 0 0 8px;
|
||
|
|
font-weight: 650;
|
||
|
|
letter-spacing: -0.02em;
|
||
|
|
}
|
||
|
|
.page header p {
|
||
|
|
margin: 0;
|
||
|
|
color: var(--muted);
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
.page button,
|
||
|
|
.portal a {
|
||
|
|
border: 1px solid rgba(240, 197, 107, 0.55);
|
||
|
|
background: linear-gradient(
|
||
|
|
180deg,
|
||
|
|
rgba(194, 142, 51, 0.35),
|
||
|
|
rgba(114, 72, 19, 0.45)
|
||
|
|
);
|
||
|
|
border-radius: 10px;
|
||
|
|
padding: 10px 16px;
|
||
|
|
font-size: 13px;
|
||
|
|
font-weight: 580;
|
||
|
|
cursor: pointer;
|
||
|
|
text-decoration: none;
|
||
|
|
}
|
||
|
|
.page button:hover,
|
||
|
|
.portal a:hover {
|
||
|
|
filter: brightness(1.18);
|
||
|
|
}
|
||
|
|
.page button.soft {
|
||
|
|
border-color: var(--line);
|
||
|
|
background: rgba(255, 255, 255, 0.04);
|
||
|
|
}
|
||
|
|
.conversation {
|
||
|
|
border: 1px solid var(--line);
|
||
|
|
border-radius: 20px;
|
||
|
|
background: linear-gradient(
|
||
|
|
180deg,
|
||
|
|
rgba(7, 27, 48, 0.68),
|
||
|
|
rgba(6, 18, 34, 0.74)
|
||
|
|
);
|
||
|
|
overflow: hidden;
|
||
|
|
min-height: 230px;
|
||
|
|
}
|
||
|
|
.channel-grid {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: minmax(0, 1fr) 250px;
|
||
|
|
gap: 18px;
|
||
|
|
align-items: start;
|
||
|
|
}
|
||
|
|
.channel-primary {
|
||
|
|
min-width: 0;
|
||
|
|
}
|
||
|
|
.channel-context {
|
||
|
|
display: grid;
|
||
|
|
gap: 12px;
|
||
|
|
}
|
||
|
|
.channel-context article {
|
||
|
|
border: 1px solid var(--line);
|
||
|
|
border-radius: 18px;
|
||
|
|
background: rgba(6, 20, 36, 0.74);
|
||
|
|
padding: 19px;
|
||
|
|
}
|
||
|
|
.channel-context h2 {
|
||
|
|
color: #b8cadb;
|
||
|
|
font-size: 13px;
|
||
|
|
margin: 0 0 17px;
|
||
|
|
}
|
||
|
|
.channel-context strong {
|
||
|
|
font-size: 14px;
|
||
|
|
font-weight: 620;
|
||
|
|
}
|
||
|
|
.channel-context p {
|
||
|
|
color: #7f97ad;
|
||
|
|
font-size: 11px;
|
||
|
|
line-height: 1.6;
|
||
|
|
margin: 7px 0 0;
|
||
|
|
}
|
||
|
|
.channel-context .path {
|
||
|
|
word-break: break-all;
|
||
|
|
}
|
||
|
|
.welcome {
|
||
|
|
text-align: center;
|
||
|
|
display: grid;
|
||
|
|
justify-items: center;
|
||
|
|
align-content: center;
|
||
|
|
min-height: 210px;
|
||
|
|
padding: 25px;
|
||
|
|
color: var(--muted);
|
||
|
|
}
|
||
|
|
.welcome h2 {
|
||
|
|
font-size: 18px;
|
||
|
|
color: var(--text);
|
||
|
|
margin: 14px 0 6px;
|
||
|
|
}
|
||
|
|
.welcome p {
|
||
|
|
max-width: 500px;
|
||
|
|
line-height: 1.7;
|
||
|
|
margin: 0;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
.welcome svg {
|
||
|
|
width: 34px;
|
||
|
|
color: var(--blue);
|
||
|
|
}
|
||
|
|
.conversation article {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: 100px 1fr;
|
||
|
|
padding: 20px 24px;
|
||
|
|
border-top: 1px solid rgba(151, 191, 230, 0.11);
|
||
|
|
}
|
||
|
|
.conversation article span {
|
||
|
|
font-size: 12px;
|
||
|
|
color: var(--blue);
|
||
|
|
font-weight: 650;
|
||
|
|
}
|
||
|
|
.conversation article.persona span {
|
||
|
|
color: #c5a6ff;
|
||
|
|
}
|
||
|
|
.conversation article p {
|
||
|
|
margin: 0;
|
||
|
|
line-height: 1.7;
|
||
|
|
font-size: 15px;
|
||
|
|
}
|
||
|
|
.receipt-stream {
|
||
|
|
margin-top: 18px;
|
||
|
|
padding: 18px 20px;
|
||
|
|
border: 1px solid var(--line);
|
||
|
|
border-radius: 18px;
|
||
|
|
background: rgba(4, 16, 30, 0.74);
|
||
|
|
}
|
||
|
|
.receipt-stream h2 {
|
||
|
|
font-size: 13px;
|
||
|
|
font-weight: 570;
|
||
|
|
color: #b8cadb;
|
||
|
|
margin: 0 0 12px;
|
||
|
|
}
|
||
|
|
.receipt {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: 90px 120px 1fr auto;
|
||
|
|
gap: 10px;
|
||
|
|
align-items: center;
|
||
|
|
padding: 10px 12px;
|
||
|
|
margin-top: 7px;
|
||
|
|
border-radius: 10px;
|
||
|
|
background: rgba(12, 34, 56, 0.7);
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
.receipt .kind {
|
||
|
|
color: #63d6cc;
|
||
|
|
font-weight: 650;
|
||
|
|
}
|
||
|
|
.receipt strong {
|
||
|
|
font-weight: 600;
|
||
|
|
}
|
||
|
|
.receipt p {
|
||
|
|
margin: 0;
|
||
|
|
color: #aabbd0;
|
||
|
|
white-space: nowrap;
|
||
|
|
overflow: hidden;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
}
|
||
|
|
.receipt time {
|
||
|
|
color: #6f879e;
|
||
|
|
font-variant-numeric: tabular-nums;
|
||
|
|
}
|
||
|
|
.receipt.agent_action .kind {
|
||
|
|
color: var(--gold);
|
||
|
|
}
|
||
|
|
.receipt.system_receipt .kind {
|
||
|
|
color: var(--green);
|
||
|
|
}
|
||
|
|
.empty {
|
||
|
|
color: #7890a8;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
.composer {
|
||
|
|
margin-top: 18px;
|
||
|
|
border: 1px solid rgba(179, 210, 239, 0.3);
|
||
|
|
border-radius: 18px;
|
||
|
|
background: rgba(10, 26, 46, 0.78);
|
||
|
|
padding: 14px 16px 10px;
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: 1fr auto;
|
||
|
|
align-items: end;
|
||
|
|
}
|
||
|
|
.composer textarea {
|
||
|
|
resize: none;
|
||
|
|
height: 62px;
|
||
|
|
background: transparent;
|
||
|
|
border: 0;
|
||
|
|
outline: 0;
|
||
|
|
color: #eaf2ff;
|
||
|
|
font-size: 15px;
|
||
|
|
padding: 7px;
|
||
|
|
}
|
||
|
|
.composer textarea::placeholder {
|
||
|
|
color: #6f8298;
|
||
|
|
}
|
||
|
|
.composer button {
|
||
|
|
border-radius: 50%;
|
||
|
|
width: 42px;
|
||
|
|
height: 42px;
|
||
|
|
padding: 0;
|
||
|
|
font-size: 22px;
|
||
|
|
}
|
||
|
|
.composer small {
|
||
|
|
grid-column: 1/-1;
|
||
|
|
color: #5f7489;
|
||
|
|
font-size: 10px;
|
||
|
|
padding: 5px 7px 0;
|
||
|
|
}
|
||
|
|
.actions {
|
||
|
|
display: flex;
|
||
|
|
gap: 9px;
|
||
|
|
}
|
||
|
|
.knowledge-workspace {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: 260px 1fr;
|
||
|
|
min-height: 650px;
|
||
|
|
border: 1px solid var(--line);
|
||
|
|
border-radius: 18px;
|
||
|
|
overflow: hidden;
|
||
|
|
background: rgba(5, 17, 31, 0.76);
|
||
|
|
}
|
||
|
|
.knowledge-workspace > aside {
|
||
|
|
border-right: 1px solid var(--line);
|
||
|
|
padding: 13px;
|
||
|
|
background: rgba(3, 12, 24, 0.55);
|
||
|
|
}
|
||
|
|
.knowledge-workspace > aside > input,
|
||
|
|
.settings-list input {
|
||
|
|
width: 100%;
|
||
|
|
background: rgba(255, 255, 255, 0.045);
|
||
|
|
border: 1px solid var(--line);
|
||
|
|
border-radius: 9px;
|
||
|
|
color: #fff;
|
||
|
|
padding: 10px 12px;
|
||
|
|
outline: none;
|
||
|
|
}
|
||
|
|
.knowledge-workspace > aside > button {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
width: 100%;
|
||
|
|
border: 0;
|
||
|
|
background: transparent;
|
||
|
|
text-align: left;
|
||
|
|
margin-top: 7px;
|
||
|
|
padding: 11px 12px;
|
||
|
|
}
|
||
|
|
.knowledge-workspace > aside > button.selected {
|
||
|
|
background: rgba(73, 141, 194, 0.15);
|
||
|
|
box-shadow: inset 2px 0 #74bee9;
|
||
|
|
}
|
||
|
|
.knowledge-workspace > aside strong {
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
.knowledge-workspace > aside small {
|
||
|
|
color: #6e879e;
|
||
|
|
margin-top: 5px;
|
||
|
|
font-size: 10px;
|
||
|
|
}
|
||
|
|
.knowledge-workspace > section {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
min-width: 0;
|
||
|
|
}
|
||
|
|
.editor-tools {
|
||
|
|
height: 55px;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 8px;
|
||
|
|
padding: 0 16px;
|
||
|
|
border-bottom: 1px solid var(--line);
|
||
|
|
}
|
||
|
|
.editor-tools > span {
|
||
|
|
flex: 1;
|
||
|
|
}
|
||
|
|
.editor-tools button {
|
||
|
|
padding: 7px 11px;
|
||
|
|
border-color: var(--line);
|
||
|
|
background: transparent;
|
||
|
|
}
|
||
|
|
.editor-tools button.danger {
|
||
|
|
color: var(--danger);
|
||
|
|
}
|
||
|
|
.editor {
|
||
|
|
flex: 1;
|
||
|
|
resize: none;
|
||
|
|
border: 0;
|
||
|
|
outline: 0;
|
||
|
|
padding: 32px 38px;
|
||
|
|
background: rgba(1, 8, 17, 0.24);
|
||
|
|
color: #dce8f5;
|
||
|
|
line-height: 1.8;
|
||
|
|
font-family: "SFMono-Regular", Menlo, monospace;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
.split-list {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: 1fr 1fr;
|
||
|
|
gap: 18px;
|
||
|
|
}
|
||
|
|
.split-list > div,
|
||
|
|
.settings-list article,
|
||
|
|
.portal {
|
||
|
|
border: 1px solid var(--line);
|
||
|
|
border-radius: 18px;
|
||
|
|
background: rgba(8, 24, 42, 0.72);
|
||
|
|
padding: 25px;
|
||
|
|
}
|
||
|
|
.split-list h2,
|
||
|
|
.settings-list h2 {
|
||
|
|
font-size: 17px;
|
||
|
|
margin: 0 0 8px;
|
||
|
|
}
|
||
|
|
.split-list p,
|
||
|
|
.settings-list p,
|
||
|
|
.portal p {
|
||
|
|
color: var(--muted);
|
||
|
|
font-size: 13px;
|
||
|
|
line-height: 1.7;
|
||
|
|
}
|
||
|
|
.split-list span {
|
||
|
|
display: block;
|
||
|
|
color: #6f879e;
|
||
|
|
margin-top: 30px;
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
.timeline-list {
|
||
|
|
display: grid;
|
||
|
|
gap: 0;
|
||
|
|
border-top: 1px solid var(--line);
|
||
|
|
}
|
||
|
|
.timeline-list article {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: 170px 1fr;
|
||
|
|
gap: 25px;
|
||
|
|
padding: 20px 4px;
|
||
|
|
border-bottom: 1px solid var(--line);
|
||
|
|
}
|
||
|
|
.timeline-list time {
|
||
|
|
color: #71869b;
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
.timeline-list strong {
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
.timeline-list p {
|
||
|
|
color: #9eb0c2;
|
||
|
|
margin: 7px 0 0;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
.portal {
|
||
|
|
text-align: center;
|
||
|
|
min-height: 360px;
|
||
|
|
display: grid;
|
||
|
|
justify-items: center;
|
||
|
|
align-content: center;
|
||
|
|
}
|
||
|
|
.portal h2 {
|
||
|
|
font-size: 22px;
|
||
|
|
margin: 18px 0 2px;
|
||
|
|
}
|
||
|
|
.portal p {
|
||
|
|
max-width: 570px;
|
||
|
|
}
|
||
|
|
.portal .origin-light {
|
||
|
|
width: 72px;
|
||
|
|
height: 72px;
|
||
|
|
}
|
||
|
|
.origin-light {
|
||
|
|
border-radius: 50%;
|
||
|
|
background: radial-gradient(
|
||
|
|
circle,
|
||
|
|
#fff7c9 0 2%,
|
||
|
|
#f2c76c 3%,
|
||
|
|
rgba(105, 185, 243, 0.55) 10%,
|
||
|
|
rgba(24, 71, 105, 0.24) 38%,
|
||
|
|
transparent 70%
|
||
|
|
);
|
||
|
|
box-shadow: 0 0 70px rgba(105, 185, 243, 0.16);
|
||
|
|
}
|
||
|
|
.settings-list {
|
||
|
|
display: grid;
|
||
|
|
gap: 12px;
|
||
|
|
}
|
||
|
|
.settings-list article {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
padding: 19px 22px;
|
||
|
|
}
|
||
|
|
.settings-list h2 {
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
.settings-list p {
|
||
|
|
margin: 0;
|
||
|
|
word-break: break-all;
|
||
|
|
}
|
||
|
|
.status {
|
||
|
|
font-size: 11px;
|
||
|
|
color: #8ebde0;
|
||
|
|
}
|
||
|
|
.status.ok {
|
||
|
|
color: var(--green);
|
||
|
|
}
|
||
|
|
.settings-list .bridge {
|
||
|
|
align-items: flex-end;
|
||
|
|
}
|
||
|
|
.bridge > div:last-child {
|
||
|
|
display: flex;
|
||
|
|
gap: 8px;
|
||
|
|
min-width: 370px;
|
||
|
|
}
|
||
|
|
.onboard {
|
||
|
|
height: 100vh;
|
||
|
|
display: grid;
|
||
|
|
place-items: center;
|
||
|
|
background:
|
||
|
|
radial-gradient(
|
||
|
|
ellipse at 50% 70%,
|
||
|
|
rgba(22, 92, 126, 0.45),
|
||
|
|
transparent 37%
|
||
|
|
),
|
||
|
|
linear-gradient(#06101f, #03070e);
|
||
|
|
position: relative;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.onboard section {
|
||
|
|
z-index: 2;
|
||
|
|
width: min(520px, 80vw);
|
||
|
|
text-align: center;
|
||
|
|
display: grid;
|
||
|
|
justify-items: center;
|
||
|
|
}
|
||
|
|
.onboard .origin-light {
|
||
|
|
width: 118px;
|
||
|
|
height: 118px;
|
||
|
|
}
|
||
|
|
.onboard h1 {
|
||
|
|
font-size: 32px;
|
||
|
|
margin: 20px 0 9px;
|
||
|
|
}
|
||
|
|
.onboard p {
|
||
|
|
color: #9db0c4;
|
||
|
|
line-height: 1.8;
|
||
|
|
margin: 0 0 26px;
|
||
|
|
}
|
||
|
|
.onboard label {
|
||
|
|
width: 100%;
|
||
|
|
text-align: left;
|
||
|
|
font-size: 12px;
|
||
|
|
color: #a9bed1;
|
||
|
|
}
|
||
|
|
.onboard input {
|
||
|
|
display: block;
|
||
|
|
width: 100%;
|
||
|
|
margin: 8px 0 14px;
|
||
|
|
padding: 15px 16px;
|
||
|
|
border-radius: 12px;
|
||
|
|
border: 1px solid rgba(164, 201, 235, 0.27);
|
||
|
|
background: rgba(6, 19, 35, 0.85);
|
||
|
|
color: #fff;
|
||
|
|
outline: 0;
|
||
|
|
font-size: 15px;
|
||
|
|
}
|
||
|
|
.onboard button {
|
||
|
|
border: 1px solid rgba(240, 197, 107, 0.65);
|
||
|
|
border-radius: 11px;
|
||
|
|
background: linear-gradient(#bd8e3c, #7f561d);
|
||
|
|
color: #fff;
|
||
|
|
padding: 12px 22px;
|
||
|
|
font-weight: 650;
|
||
|
|
}
|
||
|
|
.onboard footer {
|
||
|
|
position: absolute;
|
||
|
|
bottom: 24px;
|
||
|
|
color: #5e7488;
|
||
|
|
font-size: 11px;
|
||
|
|
}
|
||
|
|
.stars {
|
||
|
|
position: absolute;
|
||
|
|
inset: 0;
|
||
|
|
opacity: 0.45;
|
||
|
|
background-image:
|
||
|
|
radial-gradient(circle at 15% 20%, #fff 0 1px, transparent 1.5px),
|
||
|
|
radial-gradient(circle at 70% 12%, #fff 0 1px, transparent 1.5px),
|
||
|
|
radial-gradient(circle at 42% 39%, #9fd7ff 0 1px, transparent 1.5px);
|
||
|
|
background-size:
|
||
|
|
270px 230px,
|
||
|
|
390px 310px,
|
||
|
|
520px 440px;
|
||
|
|
}
|
||
|
|
.boot {
|
||
|
|
height: 100vh;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
gap: 16px;
|
||
|
|
color: #b9cadb;
|
||
|
|
}
|
||
|
|
.toast {
|
||
|
|
position: fixed;
|
||
|
|
right: 24px;
|
||
|
|
bottom: 24px;
|
||
|
|
background: #18263a;
|
||
|
|
border: 1px solid rgba(255, 143, 147, 0.45);
|
||
|
|
border-radius: 12px;
|
||
|
|
padding: 13px 15px;
|
||
|
|
z-index: 10;
|
||
|
|
max-width: 520px;
|
||
|
|
box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
.toast button {
|
||
|
|
border: 0;
|
||
|
|
background: transparent;
|
||
|
|
color: #ffb1b4;
|
||
|
|
margin-left: 15px;
|
||
|
|
}
|
||
|
|
.modal-backdrop {
|
||
|
|
position: fixed;
|
||
|
|
inset: 48px 0 0;
|
||
|
|
background: rgba(1, 5, 11, 0.7);
|
||
|
|
backdrop-filter: blur(8px);
|
||
|
|
z-index: 20;
|
||
|
|
display: grid;
|
||
|
|
place-items: center;
|
||
|
|
}
|
||
|
|
.modal {
|
||
|
|
width: min(430px, 80vw);
|
||
|
|
border: 1px solid rgba(164, 201, 235, 0.25);
|
||
|
|
border-radius: 18px;
|
||
|
|
background: #09182a;
|
||
|
|
padding: 25px;
|
||
|
|
box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
|
||
|
|
}
|
||
|
|
.modal h2 {
|
||
|
|
font-size: 20px;
|
||
|
|
margin: 0 0 7px;
|
||
|
|
}
|
||
|
|
.modal p {
|
||
|
|
color: var(--muted);
|
||
|
|
font-size: 13px;
|
||
|
|
line-height: 1.6;
|
||
|
|
margin: 0 0 20px;
|
||
|
|
}
|
||
|
|
.modal label {
|
||
|
|
display: block;
|
||
|
|
color: #aabed2;
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
.modal input {
|
||
|
|
display: block;
|
||
|
|
width: 100%;
|
||
|
|
margin: 8px 0 22px;
|
||
|
|
background: rgba(255, 255, 255, 0.04);
|
||
|
|
border: 1px solid var(--line);
|
||
|
|
border-radius: 10px;
|
||
|
|
color: #fff;
|
||
|
|
padding: 12px 13px;
|
||
|
|
outline: none;
|
||
|
|
}
|
||
|
|
.modal > div {
|
||
|
|
display: flex;
|
||
|
|
justify-content: flex-end;
|
||
|
|
gap: 8px;
|
||
|
|
}
|
||
|
|
@media (max-width: 900px) {
|
||
|
|
.app-shell {
|
||
|
|
grid-template-columns: 72px 1fr;
|
||
|
|
}
|
||
|
|
.rail {
|
||
|
|
padding-inline: 8px;
|
||
|
|
}
|
||
|
|
.brand-orbit {
|
||
|
|
height: 62px;
|
||
|
|
}
|
||
|
|
.brand-orbit span {
|
||
|
|
width: 38px;
|
||
|
|
height: 38px;
|
||
|
|
}
|
||
|
|
.rail nav button {
|
||
|
|
justify-content: center;
|
||
|
|
padding: 12px;
|
||
|
|
}
|
||
|
|
.rail nav span,
|
||
|
|
.channel-mini > div:last-child {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.channel-mini {
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
.app-shell:after {
|
||
|
|
inset-left: 72px;
|
||
|
|
}
|
||
|
|
.page {
|
||
|
|
padding: 26px 22px;
|
||
|
|
}
|
||
|
|
.receipt {
|
||
|
|
grid-template-columns: 88px 1fr;
|
||
|
|
}
|
||
|
|
.receipt p {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.knowledge-workspace {
|
||
|
|
grid-template-columns: 210px 1fr;
|
||
|
|
}
|
||
|
|
.split-list {
|
||
|
|
grid-template-columns: 1fr;
|
||
|
|
}
|
||
|
|
.channel-grid {
|
||
|
|
grid-template-columns: 1fr;
|
||
|
|
}
|
||
|
|
.channel-context {
|
||
|
|
grid-template-columns: repeat(3, 1fr);
|
||
|
|
}
|
||
|
|
}
|