add a page for tickets from gitea

This commit is contained in:
Blake Ridgway
2026-04-11 13:15:22 -05:00
parent 5bc3050dd4
commit 0ba2f7af4e
11 changed files with 471 additions and 6 deletions

View File

@@ -616,6 +616,65 @@ blockquote {
color: var(--text-muted);
}
/* === Planned Maintenance === */
.planned-outages {
margin-bottom: 2rem;
}
.planned-outages h2 {
font-size: 1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
color: var(--text-muted);
margin-bottom: 0.75rem;
}
.outage-list {
list-style: none;
margin: 0;
padding: 0;
border: 1px solid var(--border);
border-radius: 6px;
overflow: hidden;
}
.outage-item {
display: flex;
align-items: center;
gap: 0.6rem;
padding: 0.65rem 1rem;
border-bottom: 1px solid var(--border);
font-size: 0.9rem;
}
.outage-item:last-child { border-bottom: none; }
.outage-indicator {
display: inline-block;
width: 8px;
height: 8px;
border-radius: 50%;
background: #e0a000;
flex-shrink: 0;
}
.outage-link {
flex: 1;
color: var(--text);
text-decoration: none;
}
.outage-link:hover { text-decoration: underline; }
.outage-num {
font-family: var(--font-mono);
font-size: 0.78rem;
color: var(--text-muted);
flex-shrink: 0;
}
/* === Infrastructure Page === */
.infra-section { margin-bottom: 3rem; }