Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
253 changes: 253 additions & 0 deletions assets/css/coreloop.css
Original file line number Diff line number Diff line change
Expand Up @@ -1415,3 +1415,256 @@ body *[style*="color:#4cc9ff"] {
order: -1;
}
}


/* ============================================================
Sitemap footer, project pages, and request flow
============================================================ */
.sitemap-footer {
background: #000000;
color: #eaf3ff;
padding: 2rem 0 1.6rem;
border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sitemap-footer .footer-widget-container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}

.sitemap-footer .footer-search-wrap {
display: flex;
justify-content: center;
margin: 0 0 1.4rem;
}

.sitemap-footer .footer-search-form {
width: 100%;
max-width: 560px;
display: flex;
align-items: center;
gap: 0.45rem;
}

.sitemap-footer .footer-search-form input {
flex: 1 1 auto;
min-width: 0;
border: 1px solid rgba(54, 243, 255, 0.32);
background: #09111d;
color: #eef6ff;
height: 38px;
border-radius: 4px;
padding: 0 0.7rem;
}

.sitemap-footer .footer-search-form button {
height: 38px;
padding: 0 0.9rem;
border: 1px solid rgba(255, 198, 0, 0.55);
border-radius: 4px;
background: #0a84ff;
color: #08111f;
white-space: nowrap;
}

.sitemap-footer .footer-search-form button:hover,
.sitemap-footer .footer-search-form button:focus {
background: #36f3ff;
color: #08111f;
}

.footer-sitemap-grid {
display: grid;
grid-template-columns: repeat(6, minmax(0, 1fr));
gap: 1rem;
}

.sitemap-footer .footer-col h4 {
color: #eaf3ff;
font-size: 1rem;
margin: 0 0 0.7rem;
text-align: left;
}

.sitemap-footer .footer-list {
list-style: none;
padding: 0;
margin: 0;
}

.sitemap-footer .footer-list li {
margin: 0 0 0.45rem;
}

.sitemap-footer .footer-list a {
color: #d9ebff;
text-decoration: none;
}

.sitemap-footer .footer-list a:hover,
.sitemap-footer .footer-list a:focus {
color: var(--core-gold);
text-decoration: underline;
}

.footer-signoff {
background: #000000;
color: #c7d7e8;
padding: 0.9rem 0 1.2rem;
border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-signoff p {
margin: 0;
font-size: 0.92rem;
}

.project-page-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.85rem;
}

.request-shell {
display: grid;
gap: 1rem;
}

.request-section-card {
background: linear-gradient(180deg, #0c1729, #0a1423);
border: 1px solid rgba(54, 243, 255, 0.2);
border-radius: 12px;
padding: 1rem;
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.request-section-card h2,
.request-section-card h3 {
margin-top: 0;
}

.request-form-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.8rem;
}

.request-field-full {
grid-column: 1 / -1;
}

.request-field label {
display: block;
margin-bottom: 0.35rem;
color: #bfd4ec;
font-size: 0.9rem;
}

.request-field input,
.request-field select,
.request-field textarea {
width: 100%;
background: #09111d;
color: #eef6ff;
border: 1px solid rgba(54, 243, 255, 0.24);
border-radius: 8px;
padding: 0.75rem 0.8rem;
}

.request-field textarea {
min-height: 140px;
resize: vertical;
}

.request-check {
display: flex;
align-items: flex-start;
gap: 0.65rem;
color: #d8eafe;
}

.request-check input {
margin-top: 0.2rem;
}

.request-note,
.request-helper {
color: #bfd4ec;
}

.notice-card,
.error-card {
border-radius: 10px;
padding: 0.9rem 1rem;
}

.notice-card {
background: rgba(34, 197, 94, 0.14);
border: 1px solid rgba(34, 197, 94, 0.35);
color: #bbf7d0;
}

.error-card {
background: rgba(239, 68, 68, 0.16);
border: 1px solid rgba(239, 68, 68, 0.38);
color: #fecaca;
}

.request-id {
display: inline-block;
margin: 0.6rem 0 1rem;
padding: 0.8rem 1rem;
border-radius: 10px;
border: 2px solid rgba(255, 198, 0, 0.4);
background: rgba(255, 198, 0, 0.08);
color: var(--core-gold);
font-weight: 700;
font-family: monospace;
}

.cost-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 0.8rem;
}

.cost-card-price {
color: var(--core-gold);
font-weight: 700;
margin-bottom: 0.45rem;
}

@media (max-width: 1100px) {
.footer-sitemap-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cost-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media (max-width: 768px) {
.sitemap-footer .footer-search-form {
flex-direction: column;
align-items: stretch;
}

.footer-sitemap-grid,
.project-page-grid,
.request-form-grid,
.cost-grid {
grid-template-columns: 1fr;
}

.sitemap-footer .footer-col h4 {
text-align: center;
}

.sitemap-footer .footer-list li,
.sitemap-footer .footer-list a {
text-align: center;
}
}
Loading
Loading