start doc work
This commit is contained in:
+341
@@ -1915,3 +1915,344 @@ button.inline-link,
|
||||
}
|
||||
}
|
||||
|
||||
/* Local guide page */
|
||||
.guide-layout {
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.guide-control-card {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.guide-intro {
|
||||
max-width: 920px;
|
||||
margin: 0 0 18px;
|
||||
color: var(--muted-text);
|
||||
line-height: 1.55;
|
||||
}
|
||||
|
||||
.guide-server-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 12px;
|
||||
margin: 0 0 18px;
|
||||
}
|
||||
|
||||
.guide-server-card {
|
||||
border: 1px solid var(--panel-border);
|
||||
border-radius: 10px;
|
||||
padding: 14px 16px;
|
||||
background: rgba(0, 0, 0, 0.22);
|
||||
}
|
||||
|
||||
.guide-server-card span {
|
||||
display: block;
|
||||
margin-bottom: 6px;
|
||||
color: var(--muted-text);
|
||||
font-size: 0.72rem;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0.12em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.guide-server-card strong {
|
||||
color: var(--text);
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.placeholder-form.guide-controls {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, minmax(150px, 1fr));
|
||||
gap: 12px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.guide-control {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.guide-box.blank-data-box {
|
||||
display: block;
|
||||
min-height: 360px;
|
||||
padding: 28px 32px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.guide-status {
|
||||
color: var(--muted-text);
|
||||
}
|
||||
|
||||
.guide-status--error {
|
||||
color: #ffb4b4;
|
||||
}
|
||||
|
||||
.guide-breadcrumb {
|
||||
margin-bottom: 18px;
|
||||
color: var(--muted-text);
|
||||
font-size: 0.78rem;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0.08em;
|
||||
}
|
||||
|
||||
.guide-doc {
|
||||
max-width: 880px;
|
||||
margin: 0 auto;
|
||||
color: var(--text);
|
||||
line-height: 1.65;
|
||||
}
|
||||
|
||||
.guide-doc h2,
|
||||
.guide-doc h3,
|
||||
.guide-doc h4,
|
||||
.guide-doc h5 {
|
||||
margin: 1.35em 0 0.55em;
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
.guide-doc h2:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.guide-doc p {
|
||||
margin: 0 0 1em;
|
||||
}
|
||||
|
||||
.guide-doc ul {
|
||||
margin: 0 0 1em 1.4em;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.guide-doc li {
|
||||
margin: 0.3em 0;
|
||||
}
|
||||
|
||||
.guide-doc code {
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
|
||||
}
|
||||
|
||||
.guide-doc pre {
|
||||
overflow-x: auto;
|
||||
padding: 12px;
|
||||
border-radius: 10px;
|
||||
background: rgba(0, 0, 0, 0.45);
|
||||
}
|
||||
|
||||
@media (max-width: 900px) {
|
||||
.placeholder-form.guide-controls {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.guide-server-grid,
|
||||
.placeholder-form.guide-controls {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.guide-box.blank-data-box {
|
||||
padding: 22px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Guide markdown readability fixes */
|
||||
.guide-box.blank-data-box {
|
||||
align-items: stretch;
|
||||
justify-content: flex-start;
|
||||
font-size: 1rem;
|
||||
font-weight: 400;
|
||||
letter-spacing: normal;
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
.guide-box .guide-breadcrumb {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.guide-doc {
|
||||
font-weight: 400;
|
||||
letter-spacing: normal;
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
.guide-doc h2 {
|
||||
font-size: 1.55rem;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.guide-doc h3 {
|
||||
font-size: 1.15rem;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.guide-doc p,
|
||||
.guide-doc li {
|
||||
color: var(--text);
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.guide-doc strong {
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.guide-doc hr {
|
||||
margin: 24px 0;
|
||||
border: 0;
|
||||
border-top: 1px solid var(--panel-border);
|
||||
}
|
||||
|
||||
.guide-doc pre {
|
||||
margin: 12px 0 22px;
|
||||
white-space: pre;
|
||||
}
|
||||
|
||||
.guide-doc pre code {
|
||||
display: block;
|
||||
color: var(--text);
|
||||
font-weight: 400;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
/* Guide Markdown polish */
|
||||
.guide-box.blank-data-box {
|
||||
align-items: stretch !important;
|
||||
justify-content: flex-start !important;
|
||||
text-align: left !important;
|
||||
font-size: 1rem !important;
|
||||
font-weight: 400 !important;
|
||||
letter-spacing: normal !important;
|
||||
text-transform: none !important;
|
||||
}
|
||||
|
||||
.guide-doc {
|
||||
max-width: 880px;
|
||||
margin: 0 auto;
|
||||
color: var(--text);
|
||||
line-height: 1.65;
|
||||
font-size: 1rem;
|
||||
font-weight: 400 !important;
|
||||
letter-spacing: normal !important;
|
||||
text-transform: none !important;
|
||||
}
|
||||
|
||||
.guide-doc h2 {
|
||||
margin: 0 0 18px;
|
||||
font-size: 1.8rem;
|
||||
line-height: 1.2;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.guide-doc h3 {
|
||||
margin: 28px 0 12px;
|
||||
font-size: 1.25rem;
|
||||
line-height: 1.3;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.guide-doc p {
|
||||
margin: 0 0 18px;
|
||||
color: var(--text);
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.guide-doc ul {
|
||||
margin: 0 0 20px 1.35rem;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.guide-doc li {
|
||||
margin: 7px 0;
|
||||
color: var(--text);
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.guide-doc li::marker {
|
||||
color: #e6adc1;
|
||||
}
|
||||
|
||||
.guide-doc strong {
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.guide-doc hr {
|
||||
margin: 28px 0;
|
||||
border: 0;
|
||||
border-top: 1px solid rgba(230, 173, 193, 0.25);
|
||||
}
|
||||
|
||||
.guide-doc pre {
|
||||
display: block;
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
margin: 12px 0 24px;
|
||||
padding: 16px 18px;
|
||||
overflow-x: auto;
|
||||
white-space: pre;
|
||||
border: 1px solid rgba(230, 173, 193, 0.28);
|
||||
border-radius: 10px;
|
||||
background: rgba(70, 35, 48, 0.28);
|
||||
}
|
||||
|
||||
.guide-doc pre code {
|
||||
display: block;
|
||||
color: var(--text);
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
|
||||
font-size: 0.92rem;
|
||||
line-height: 1.45;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.guide-doc code {
|
||||
padding: 0.08rem 0.25rem;
|
||||
border: 1px solid rgba(230, 173, 193, 0.25);
|
||||
border-radius: 4px;
|
||||
background: rgba(70, 35, 48, 0.28);
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
|
||||
}
|
||||
|
||||
.guide-doc pre code {
|
||||
padding: 0;
|
||||
border: 0;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
/* Guide Markdown neutral site-color override */
|
||||
.guide-doc li::marker {
|
||||
color: var(--muted-text) !important;
|
||||
}
|
||||
|
||||
.guide-doc hr {
|
||||
border-top-color: var(--panel-border) !important;
|
||||
}
|
||||
|
||||
.guide-doc pre {
|
||||
border-color: var(--panel-border) !important;
|
||||
background: rgba(0, 0, 0, 0.24) !important;
|
||||
}
|
||||
|
||||
.guide-doc code {
|
||||
border-color: var(--panel-border) !important;
|
||||
background: rgba(0, 0, 0, 0.24) !important;
|
||||
color: var(--text) !important;
|
||||
}
|
||||
|
||||
.guide-doc pre code {
|
||||
border: 0 !important;
|
||||
background: transparent !important;
|
||||
color: var(--text) !important;
|
||||
}
|
||||
|
||||
/* Guide ordered-list support */
|
||||
.guide-doc ol {
|
||||
margin: 0 0 20px 1.35rem;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.guide-doc ol li {
|
||||
margin: 7px 0;
|
||||
padding-left: 0.25rem;
|
||||
}
|
||||
|
||||
.guide-doc ol li::marker {
|
||||
color: var(--muted-text);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user