2026-04-08 06:03:48 -04:00
|
|
|
:root {
|
2026-04-12 20:15:33 -04:00
|
|
|
color-scheme: light;
|
2026-04-08 06:03:48 -04:00
|
|
|
font-family: "IBM Plex Sans", "Avenir Next", "Segoe UI", sans-serif;
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
2026-04-12 20:15:33 -04:00
|
|
|
--bg: linear-gradient(180deg, #fffaf0 0%, #f3ede1 100%);
|
|
|
|
|
--panel: #fffdf8;
|
|
|
|
|
--panel-hover: #f1eadf;
|
|
|
|
|
--card: #ffffff;
|
|
|
|
|
--border: #ded5c7;
|
|
|
|
|
--text: #1f2933;
|
|
|
|
|
--muted: #667085;
|
|
|
|
|
--accent: #0f6f8f;
|
|
|
|
|
--accent-strong: #0b5d78;
|
|
|
|
|
--accent-soft: rgba(15, 111, 143, 0.12);
|
|
|
|
|
--accent-border: rgba(15, 111, 143, 0.28);
|
|
|
|
|
--topbar-bg: rgba(255, 253, 248, 0.92);
|
|
|
|
|
--code-bg: #edf3f5;
|
|
|
|
|
--warning-bg: rgba(191, 125, 22, 0.12);
|
|
|
|
|
--warning-border: rgba(191, 125, 22, 0.32);
|
|
|
|
|
--warning-text: #7a4700;
|
|
|
|
|
--button-text: #ffffff;
|
|
|
|
|
--disabled-bg: #ece6dc;
|
|
|
|
|
--disabled-text: #8a8174;
|
|
|
|
|
--error: #a64234;
|
2026-04-08 06:03:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
* {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html,
|
|
|
|
|
body {
|
|
|
|
|
min-height: 100%;
|
|
|
|
|
margin: 0;
|
|
|
|
|
background: var(--bg);
|
|
|
|
|
color: var(--text);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
min-width: 20rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1,
|
|
|
|
|
h2,
|
|
|
|
|
h3,
|
|
|
|
|
p {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button,
|
|
|
|
|
input,
|
|
|
|
|
textarea {
|
|
|
|
|
font: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-shell {
|
|
|
|
|
width: min(72rem, 100%);
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 2rem 1rem 3rem;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-12 20:15:33 -04:00
|
|
|
.topbar {
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: 0;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
align-items: center;
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-bottom: 0.0625rem solid var(--accent-border);
|
|
|
|
|
padding: 0.75rem clamp(1rem, 4vw, 2rem);
|
|
|
|
|
background: var(--topbar-bg);
|
|
|
|
|
backdrop-filter: blur(1rem);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar-menu {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex: 1;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar-brand,
|
|
|
|
|
.topbar-link,
|
|
|
|
|
.topbar-menu-button {
|
|
|
|
|
border: 0;
|
|
|
|
|
color: inherit;
|
|
|
|
|
background: transparent;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar-brand {
|
|
|
|
|
border-radius: 999rem;
|
|
|
|
|
padding: 0.45rem 0.7rem;
|
|
|
|
|
color: var(--accent);
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
letter-spacing: 0.03em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar-brand:hover,
|
|
|
|
|
.topbar-brand:focus-visible,
|
|
|
|
|
.topbar-brand.active {
|
|
|
|
|
color: var(--text);
|
|
|
|
|
background: var(--accent-soft);
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar-nav,
|
|
|
|
|
.topbar-auth {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar-nav {
|
|
|
|
|
flex: 1;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar-link {
|
|
|
|
|
border-radius: 999rem;
|
|
|
|
|
padding: 0.5rem 0.7rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar-link:hover,
|
|
|
|
|
.topbar-link:focus-visible,
|
|
|
|
|
.topbar-link.active {
|
|
|
|
|
color: var(--text);
|
|
|
|
|
background: var(--panel-hover);
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar-auth {
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar-auth p {
|
|
|
|
|
max-width: 12rem;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar-auth-muted {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar-menu-button {
|
|
|
|
|
display: none;
|
|
|
|
|
width: 2.5rem;
|
|
|
|
|
height: 2.5rem;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
border-radius: 999rem;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar-menu-button span {
|
|
|
|
|
width: 1.1rem;
|
|
|
|
|
height: 0.125rem;
|
|
|
|
|
border-radius: 999rem;
|
|
|
|
|
background: currentColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar-menu-button:hover,
|
|
|
|
|
.topbar-menu-button:focus-visible {
|
|
|
|
|
color: var(--text);
|
|
|
|
|
background: var(--panel-hover);
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-08 06:03:48 -04:00
|
|
|
.page-header,
|
|
|
|
|
.page-section,
|
|
|
|
|
.panel,
|
|
|
|
|
.page-message {
|
|
|
|
|
border: 0.0625rem solid var(--border);
|
|
|
|
|
background: var(--panel);
|
|
|
|
|
border-radius: 0.9rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-header,
|
|
|
|
|
.page-section,
|
|
|
|
|
.page-message {
|
|
|
|
|
padding: 1.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-header {
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-header h1,
|
|
|
|
|
.thread-header h1,
|
|
|
|
|
.page-message h1 {
|
|
|
|
|
font-size: clamp(1.6rem, 3vw, 2.4rem);
|
|
|
|
|
line-height: 1.1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-kicker {
|
|
|
|
|
margin-bottom: 0.35rem;
|
|
|
|
|
color: var(--accent);
|
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
letter-spacing: 0.04em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-section {
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.section-header {
|
|
|
|
|
margin-bottom: 0.9rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.section-header h2,
|
|
|
|
|
.subsection-header h2 {
|
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.subsection-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-grid,
|
|
|
|
|
.stack,
|
|
|
|
|
.reply-list {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-grid,
|
|
|
|
|
.two-column-grid {
|
|
|
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card,
|
|
|
|
|
.discussion-preview-card,
|
2026-04-12 20:15:33 -04:00
|
|
|
.activity-card,
|
2026-04-08 06:03:48 -04:00
|
|
|
.reply-card {
|
|
|
|
|
border: 0.0625rem solid var(--border);
|
|
|
|
|
border-radius: 0.75rem;
|
2026-04-12 20:15:33 -04:00
|
|
|
background: var(--card);
|
2026-04-08 06:03:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card,
|
2026-04-12 20:15:33 -04:00
|
|
|
.activity-card,
|
2026-04-08 06:03:48 -04:00
|
|
|
.reply-card {
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.course-card-button {
|
|
|
|
|
width: 100%;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
text-align: left;
|
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.course-card-button:hover,
|
|
|
|
|
.course-card-button:focus-visible {
|
|
|
|
|
background: var(--panel-hover);
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card h3,
|
2026-04-12 20:15:33 -04:00
|
|
|
.discussion-preview-card h3,
|
|
|
|
|
.activity-card h3 {
|
2026-04-08 06:03:48 -04:00
|
|
|
margin-bottom: 0.35rem;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-12 20:15:33 -04:00
|
|
|
.activity-list {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-08 06:03:48 -04:00
|
|
|
.discussion-preview-card {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
text-align: left;
|
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-12 20:15:33 -04:00
|
|
|
.activity-card-button {
|
|
|
|
|
width: 100%;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
text-align: left;
|
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-08 06:03:48 -04:00
|
|
|
.discussion-preview-card:hover,
|
2026-04-12 20:15:33 -04:00
|
|
|
.discussion-preview-card:focus-visible,
|
|
|
|
|
.activity-card-button:hover,
|
|
|
|
|
.activity-card-button:focus-visible {
|
2026-04-08 06:03:48 -04:00
|
|
|
background: var(--panel-hover);
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.muted-copy,
|
|
|
|
|
.meta-line,
|
|
|
|
|
.empty-state {
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.muted-copy {
|
|
|
|
|
max-width: 44rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.meta-line {
|
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.empty-state {
|
|
|
|
|
padding: 0.25rem 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.back-link,
|
|
|
|
|
.secondary-link,
|
2026-04-12 20:15:33 -04:00
|
|
|
.secondary-button,
|
2026-04-08 06:03:48 -04:00
|
|
|
.compose-button {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
border-radius: 0.65rem;
|
|
|
|
|
border: 0.0625rem solid var(--border);
|
|
|
|
|
padding: 0.65rem 0.85rem;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.back-link {
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-12 20:15:33 -04:00
|
|
|
.auth-bar {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
border: 0.0625rem solid var(--accent-border);
|
|
|
|
|
border-radius: 0.75rem;
|
|
|
|
|
padding: 0.75rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
background: var(--accent-soft);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.secondary-button {
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
color: var(--accent);
|
|
|
|
|
background: var(--panel);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.secondary-button:hover,
|
|
|
|
|
.secondary-button:focus-visible,
|
|
|
|
|
.back-link:hover,
|
|
|
|
|
.back-link:focus-visible {
|
|
|
|
|
background: var(--panel-hover);
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-08 06:03:48 -04:00
|
|
|
.thread-view {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel {
|
|
|
|
|
padding: 1.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.thread-header {
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel-actions {
|
|
|
|
|
margin-top: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.thread-copy {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 0.85rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.reply-author {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.outline-list,
|
|
|
|
|
.lesson-list {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.outline-chapter h3 {
|
|
|
|
|
margin-bottom: 0.75rem;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lesson-row {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 2.5rem minmax(0, 1fr);
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
align-items: start;
|
|
|
|
|
border-top: 0.0625rem solid var(--border);
|
|
|
|
|
padding-top: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lesson-row-button {
|
|
|
|
|
width: 100%;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
text-align: left;
|
|
|
|
|
color: inherit;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lesson-row-button:hover,
|
|
|
|
|
.lesson-row-button:focus-visible {
|
|
|
|
|
background: var(--panel-hover);
|
|
|
|
|
outline: none;
|
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lesson-row:first-child {
|
|
|
|
|
border-top: 0;
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lesson-index {
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lesson-title {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lesson-summary {
|
|
|
|
|
margin-top: 0.35rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown-content {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 0.85rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown-content > :first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown-content > :last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown-content h1,
|
|
|
|
|
.markdown-content h2,
|
|
|
|
|
.markdown-content h3,
|
|
|
|
|
.markdown-content h4 {
|
|
|
|
|
line-height: 1.15;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown-content h1 {
|
|
|
|
|
font-size: 1.8rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown-content h2 {
|
|
|
|
|
font-size: 1.35rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown-content h3 {
|
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown-content p,
|
|
|
|
|
.markdown-content li,
|
|
|
|
|
.markdown-content blockquote {
|
|
|
|
|
color: var(--text);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown-content ul,
|
|
|
|
|
.markdown-content ol {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding-left: 1.4rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown-content li + li {
|
|
|
|
|
margin-top: 0.35rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown-content code {
|
|
|
|
|
border-radius: 0.35rem;
|
|
|
|
|
padding: 0.12rem 0.35rem;
|
2026-04-12 20:15:33 -04:00
|
|
|
background: var(--code-bg);
|
2026-04-08 06:03:48 -04:00
|
|
|
font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
|
|
|
|
|
font-size: 0.92em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown-content pre {
|
|
|
|
|
overflow-x: auto;
|
|
|
|
|
margin: 0;
|
|
|
|
|
border: 0.0625rem solid var(--border);
|
|
|
|
|
border-radius: 0.75rem;
|
|
|
|
|
padding: 0.85rem 0.95rem;
|
2026-04-12 20:15:33 -04:00
|
|
|
background: var(--code-bg);
|
2026-04-08 06:03:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown-content pre code {
|
|
|
|
|
padding: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown-content blockquote {
|
|
|
|
|
margin: 0;
|
|
|
|
|
border-left: 0.2rem solid var(--accent);
|
|
|
|
|
padding-left: 0.9rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown-content a {
|
|
|
|
|
color: var(--accent);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown-content hr {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 0.0625rem;
|
|
|
|
|
margin: 0;
|
|
|
|
|
border: 0;
|
|
|
|
|
background: var(--border);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compose-box {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 0.85rem;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-12 20:15:33 -04:00
|
|
|
.signin-page {
|
|
|
|
|
display: grid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.signin-panel {
|
|
|
|
|
max-width: 42rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.signin-actions {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 0.85rem;
|
|
|
|
|
justify-items: start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.signin-callout {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
border: 0.0625rem solid var(--warning-border);
|
|
|
|
|
border-radius: 0.75rem;
|
|
|
|
|
padding: 0.75rem;
|
|
|
|
|
color: var(--warning-text);
|
|
|
|
|
background: var(--warning-bg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-label {
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compose-input,
|
|
|
|
|
.token-input {
|
2026-04-08 06:03:48 -04:00
|
|
|
width: 100%;
|
|
|
|
|
border: 0.0625rem solid var(--border);
|
|
|
|
|
border-radius: 0.75rem;
|
|
|
|
|
padding: 0.85rem 0.95rem;
|
|
|
|
|
color: var(--text);
|
2026-04-12 20:15:33 -04:00
|
|
|
background: var(--card);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compose-input {
|
|
|
|
|
min-height: 9rem;
|
|
|
|
|
resize: vertical;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compose-input:focus,
|
|
|
|
|
.token-input:focus {
|
|
|
|
|
border-color: var(--accent);
|
|
|
|
|
outline: none;
|
2026-04-08 06:03:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compose-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compose-button {
|
2026-04-12 20:15:33 -04:00
|
|
|
border-color: var(--accent);
|
|
|
|
|
color: var(--button-text);
|
|
|
|
|
background: var(--accent);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
transition:
|
|
|
|
|
background 160ms ease,
|
|
|
|
|
border-color 160ms ease,
|
|
|
|
|
color 160ms ease,
|
|
|
|
|
opacity 160ms ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compose-button:hover:not(:disabled),
|
|
|
|
|
.compose-button:focus-visible:not(:disabled) {
|
|
|
|
|
border-color: var(--accent-strong);
|
|
|
|
|
background: var(--accent-strong);
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compose-button:disabled {
|
|
|
|
|
border-color: var(--border);
|
|
|
|
|
color: var(--disabled-text);
|
|
|
|
|
background: var(--disabled-bg);
|
2026-04-08 06:03:48 -04:00
|
|
|
cursor: not-allowed;
|
2026-04-12 20:15:33 -04:00
|
|
|
opacity: 0.72;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compose-error {
|
|
|
|
|
color: var(--error);
|
2026-04-08 06:03:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.secondary-link {
|
|
|
|
|
color: var(--accent);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 48rem) {
|
2026-04-12 20:15:33 -04:00
|
|
|
.topbar {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: auto auto;
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar-menu-button {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar-menu {
|
|
|
|
|
display: none;
|
|
|
|
|
grid-column: 1 / -1;
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-top: 0.0625rem solid var(--border);
|
|
|
|
|
padding-top: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar-menu.open {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar-nav,
|
|
|
|
|
.topbar-auth {
|
|
|
|
|
width: 100%;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar-nav {
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar-link {
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar-auth {
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-08 06:03:48 -04:00
|
|
|
.card-grid,
|
|
|
|
|
.two-column-grid {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compose-actions,
|
2026-04-12 20:15:33 -04:00
|
|
|
.auth-bar,
|
|
|
|
|
.signin-callout,
|
2026-04-08 06:03:48 -04:00
|
|
|
.subsection-header {
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
}
|