feat(dotnet): migrate core formulas, deploy tools, and blazor admin web app to .NET 10
WBS-9.3 - NULL Policy CI Gate / NULL Policy Validation (push) Has been cancelled
Quant Engine CI/CD Pipeline / validate-core (pull_request) Has been cancelled
Quant Engine CI/CD Pipeline / validate-ui-and-storage (pull_request) Has been cancelled
WBS-9.3 - NULL Policy CI Gate / NULL Policy Validation (pull_request) Has been cancelled

This commit is contained in:
2026-06-25 15:52:10 +09:00
parent 9abb8d3bc3
commit 2ba8def9bb
232 changed files with 10825 additions and 65 deletions
+333
View File
@@ -0,0 +1,333 @@
/* Quant Engine Premium Custom Theme & Aesthetics */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=JetBrains+Mono:wght@400;700&display=swap');
:root {
--bg-dark: #090b11;
--card-bg: rgba(22, 28, 45, 0.7);
--border-color: rgba(255, 255, 255, 0.08);
--text-primary: #f3f4f6;
--text-secondary: #9ca3af;
--accent-blue: #3b82f6;
--accent-green: #10b981;
--accent-red: #ef4444;
--accent-yellow: #f59e0b;
--font-sans: 'Outfit', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
}
body {
background-color: var(--bg-dark);
color: var(--text-primary);
font-family: var(--font-sans);
margin: 0;
padding: 0;
min-height: 100vh;
background-image: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 40%);
}
.dashboard-container {
padding: 2rem;
max-width: 1600px;
margin: 0 auto;
}
/* Header */
.db-header {
display: flex;
justify-content: space-between;
align-items: center;
padding-bottom: 1.5rem;
border-bottom: 1px solid var(--border-color);
margin-bottom: 2rem;
}
.logo-area {
display: flex;
align-items: center;
gap: 0.75rem;
}
.logo-area h1 {
font-size: 1.75rem;
font-weight: 800;
margin: 0;
background: linear-gradient(135deg, #60a5fa, #34d399);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.logo-area .badge {
background: rgba(59, 130, 246, 0.15);
color: var(--accent-blue);
padding: 0.25rem 0.6rem;
border-radius: 9999px;
font-size: 0.75rem;
font-weight: 600;
border: 1px solid rgba(59, 130, 246, 0.3);
}
.system-status {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.875rem;
color: var(--text-secondary);
}
.status-dot {
width: 8px;
height: 8px;
border-radius: 50%;
display: inline-block;
}
.status-dot.green {
background-color: var(--accent-green);
box-shadow: 0 0 10px var(--accent-green);
}
/* Layout Grid */
.db-grid {
display: grid;
grid-template-columns: 350px 1fr;
gap: 2rem;
}
/* Cards */
.card {
background: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 16px;
padding: 1.5rem;
backdrop-filter: blur(12px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.status-card {
margin-bottom: 1.5rem;
}
.status-card h3 {
font-size: 1.1rem;
margin-top: 0;
margin-bottom: 1rem;
border-bottom: 1px solid var(--border-color);
padding-bottom: 0.5rem;
color: var(--text-secondary);
}
.status-list {
list-style: none;
padding: 0;
margin: 0;
}
.status-list li {
padding: 0.75rem 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.status-list li:last-child {
border-bottom: none;
}
.status-list strong {
color: var(--accent-blue);
}
.status-list span.meta {
display: block;
font-size: 0.75rem;
color: var(--text-secondary);
margin-top: 0.25rem;
}
.badge.success, .badge.approved { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); }
.badge.pending { background: rgba(245, 158, 11, 0.15); color: var(--accent-yellow); }
/* Table Section */
.table-card {
overflow: hidden;
}
.table-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1.5rem;
}
.table-header h2 {
font-size: 1.4rem;
margin: 0;
}
.table-container {
overflow-x: auto;
}
table {
width: 100%;
border-collapse: collapse;
text-align: left;
}
th, td {
padding: 1rem;
border-bottom: 1px solid var(--border-color);
}
th {
font-weight: 600;
color: var(--text-secondary);
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.05em;
}
td {
font-size: 0.9rem;
}
tr:hover {
background: rgba(255, 255, 255, 0.02);
}
.font-mono {
font-family: var(--font-mono);
font-size: 0.85rem;
}
.value-cell {
max-width: 300px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
/* Buttons */
.btn {
font-family: var(--font-sans);
font-weight: 600;
border: none;
border-radius: 8px;
padding: 0.5rem 1rem;
cursor: pointer;
transition: all 0.2s ease;
}
.btn-primary {
background: linear-gradient(135deg, var(--accent-blue), #2563eb);
color: white;
}
.btn-primary:hover {
transform: translateY(-1px);
box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}
.btn-sm {
padding: 0.25rem 0.5rem;
font-size: 0.75rem;
}
.btn-secondary {
background: rgba(255, 255, 255, 0.08);
color: var(--text-primary);
}
.btn-secondary:hover {
background: rgba(255, 255, 255, 0.15);
}
.btn-danger {
background: rgba(239, 68, 68, 0.15);
color: var(--accent-red);
border: 1px solid rgba(239, 68, 68, 0.3);
}
.btn-danger:hover {
background: var(--accent-red);
color: white;
}
/* Modals */
.modal-backdrop {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(8px);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
}
.modal-content {
background: #111827;
border: 1px solid var(--border-color);
border-radius: 16px;
width: 500px;
padding: 1.5rem;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.modal-header {
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid var(--border-color);
padding-bottom: 0.75rem;
margin-bottom: 1.25rem;
}
.modal-header h3 {
margin: 0;
}
.close-btn {
background: none;
border: none;
color: var(--text-secondary);
font-size: 1.5rem;
cursor: pointer;
}
.form-group {
margin-bottom: 1.25rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
font-size: 0.85rem;
color: var(--text-secondary);
}
.form-control {
width: 100%;
background: rgba(0, 0, 0, 0.3);
border: 1px solid var(--border-color);
border-radius: 8px;
padding: 0.6rem;
color: var(--text-primary);
box-sizing: border-box;
}
.form-control:focus {
border-color: var(--accent-blue);
outline: none;
}
.modal-footer {
display: flex;
justify-content: flex-end;
gap: 0.75rem;
border-top: 1px solid var(--border-color);
padding-top: 1rem;
margin-top: 1.5rem;
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB