Set up Siteforge container deployment and registry publishing
This commit is contained in:
+419
@@ -0,0 +1,419 @@
|
||||
.shell {
|
||||
width: min(1080px, 100% - 2rem);
|
||||
margin: 0 auto;
|
||||
padding: 3rem 0 4rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1.5rem;
|
||||
}
|
||||
|
||||
.hero {
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 24px;
|
||||
padding: 2rem;
|
||||
background:
|
||||
radial-gradient(circle at 90% 0%, var(--hero-glow) 0%, rgba(247, 216, 166, 0) 46%),
|
||||
linear-gradient(135deg, var(--surface-soft) 0%, var(--bg-bottom) 100%);
|
||||
animation: reveal 480ms ease-out both;
|
||||
}
|
||||
|
||||
.eyebrow {
|
||||
margin: 0;
|
||||
font-family: var(--display);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.08em;
|
||||
font-size: 0.85rem;
|
||||
color: var(--ink-muted);
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 0.5rem 0;
|
||||
font-family: var(--display);
|
||||
font-size: clamp(2rem, 4vw, 3.4rem);
|
||||
line-height: 1.08;
|
||||
color: var(--ink);
|
||||
}
|
||||
|
||||
.intro {
|
||||
margin: 0;
|
||||
max-width: 62ch;
|
||||
color: var(--ink-muted);
|
||||
}
|
||||
|
||||
.filters {
|
||||
margin-top: 1.2rem;
|
||||
display: flex;
|
||||
gap: 0.6rem;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.filters button {
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 999px;
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
color: var(--ink);
|
||||
padding: 0.45rem 0.9rem;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: transform 180ms ease, background-color 180ms ease;
|
||||
}
|
||||
|
||||
.filters a {
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 999px;
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
color: var(--ink);
|
||||
padding: 0.45rem 0.9rem;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.filters button:hover {
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.filters button.active {
|
||||
background: var(--accent);
|
||||
border-color: var(--accent);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.stats {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
|
||||
gap: 0.8rem;
|
||||
}
|
||||
|
||||
.stats article {
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 14px;
|
||||
padding: 0.9rem 1rem;
|
||||
background: var(--surface);
|
||||
}
|
||||
|
||||
.stats p {
|
||||
margin: 0;
|
||||
color: var(--ink-muted);
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.stats strong {
|
||||
font-size: 1.6rem;
|
||||
color: var(--ink);
|
||||
overflow-wrap: anywhere;
|
||||
word-break: break-word;
|
||||
line-height: 1.25;
|
||||
}
|
||||
|
||||
.grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 0.9rem;
|
||||
}
|
||||
|
||||
.card {
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 18px;
|
||||
padding: 1rem;
|
||||
background: var(--surface);
|
||||
animation: reveal 500ms ease-out both;
|
||||
}
|
||||
|
||||
.card h2 {
|
||||
margin: 0.65rem 0 0.4rem;
|
||||
font-family: var(--display);
|
||||
color: var(--ink);
|
||||
}
|
||||
|
||||
.title-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.55rem;
|
||||
}
|
||||
|
||||
.project-icon {
|
||||
width: 1.55rem;
|
||||
height: 1.55rem;
|
||||
border-radius: 0.4rem;
|
||||
object-fit: cover;
|
||||
border: 1px solid var(--line);
|
||||
background: var(--surface);
|
||||
}
|
||||
|
||||
.project-icon.fallback {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-family: var(--body);
|
||||
font-weight: 700;
|
||||
color: var(--ink-muted);
|
||||
background: var(--chip-bg);
|
||||
}
|
||||
|
||||
.card p {
|
||||
margin: 0;
|
||||
color: var(--ink-muted);
|
||||
}
|
||||
|
||||
.card-top {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.pill,
|
||||
.status {
|
||||
font-size: 0.72rem;
|
||||
letter-spacing: 0.03em;
|
||||
text-transform: uppercase;
|
||||
border-radius: 999px;
|
||||
padding: 0.3rem 0.55rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.pill {
|
||||
background: var(--pill-bg);
|
||||
color: var(--pill-ink);
|
||||
}
|
||||
|
||||
.status {
|
||||
background: #ececec;
|
||||
color: #434343;
|
||||
}
|
||||
|
||||
.status.live {
|
||||
background: #d5f3e0;
|
||||
color: #145a32;
|
||||
}
|
||||
|
||||
.status.in-progress {
|
||||
background: #fde6bf;
|
||||
color: #7a4e00;
|
||||
}
|
||||
|
||||
.status.archived {
|
||||
background: #ebebeb;
|
||||
color: #4a4a4a;
|
||||
}
|
||||
|
||||
.stack {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0.85rem 0 0;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.35rem;
|
||||
}
|
||||
|
||||
.stack li {
|
||||
padding: 0.28rem 0.5rem;
|
||||
background: var(--chip-bg);
|
||||
border-radius: 8px;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.card footer {
|
||||
margin-top: 1rem;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.actions {
|
||||
display: flex;
|
||||
gap: 0.45rem;
|
||||
}
|
||||
|
||||
.card footer a {
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
border-radius: 10px;
|
||||
padding: 0.45rem 0.75rem;
|
||||
background: var(--accent);
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.card footer a:hover {
|
||||
filter: brightness(1.05);
|
||||
}
|
||||
|
||||
.notes {
|
||||
border: 1px dashed var(--line);
|
||||
border-radius: 12px;
|
||||
padding: 1rem;
|
||||
background: var(--surface-soft);
|
||||
}
|
||||
|
||||
.notes h3 {
|
||||
margin: 0 0 0.4rem;
|
||||
font-family: var(--display);
|
||||
}
|
||||
|
||||
.notes p {
|
||||
margin: 0;
|
||||
color: var(--ink-muted);
|
||||
}
|
||||
|
||||
.detail-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 0.9rem;
|
||||
}
|
||||
|
||||
.detail-card {
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 14px;
|
||||
background: var(--surface);
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.detail-card h3 {
|
||||
margin: 0 0 0.45rem;
|
||||
font-family: var(--display);
|
||||
}
|
||||
|
||||
.detail-card p {
|
||||
margin: 0;
|
||||
color: var(--ink-muted);
|
||||
}
|
||||
|
||||
.update-tip {
|
||||
margin-top: 0.8rem;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.admin-panel {
|
||||
background: var(--surface);
|
||||
}
|
||||
|
||||
.admin-grid {
|
||||
margin-top: 0.8rem;
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 0.55rem;
|
||||
}
|
||||
|
||||
.admin-label {
|
||||
font-weight: 700;
|
||||
color: var(--ink);
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.admin-input {
|
||||
width: 100%;
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 10px;
|
||||
padding: 0.55rem 0.7rem;
|
||||
font: inherit;
|
||||
color: var(--ink);
|
||||
background: var(--input-bg);
|
||||
}
|
||||
|
||||
.admin-textarea {
|
||||
min-height: 90px;
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
.scan-row {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.35rem;
|
||||
}
|
||||
|
||||
.scan-button {
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 10px;
|
||||
padding: 0.5rem 0.8rem;
|
||||
background: var(--surface);
|
||||
color: var(--ink);
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
.scan-status {
|
||||
margin: 0;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.scan-status.success {
|
||||
color: #1f7a46;
|
||||
}
|
||||
|
||||
.scan-status.error {
|
||||
color: #a33b1f;
|
||||
}
|
||||
|
||||
.scan-status.loading,
|
||||
.scan-status.idle {
|
||||
color: var(--ink-muted);
|
||||
}
|
||||
|
||||
.admin-actions {
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.admin-actions button {
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 10px;
|
||||
padding: 0.5rem 0.8rem;
|
||||
background: var(--surface);
|
||||
color: var(--ink);
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.admin-actions button:first-child {
|
||||
background: var(--accent);
|
||||
color: #fff;
|
||||
border-color: var(--accent);
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
||||
background: #f0ece6;
|
||||
padding: 0.15rem 0.4rem;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
@keyframes reveal {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(14px);
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 760px) {
|
||||
.shell {
|
||||
width: min(1080px, 100% - 1rem);
|
||||
padding-top: 1rem;
|
||||
}
|
||||
|
||||
.hero {
|
||||
padding: 1.2rem;
|
||||
}
|
||||
|
||||
.stats {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.detail-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.stats article:last-child {
|
||||
grid-column: auto;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user