initial commit

This commit is contained in:
2026-02-04 00:16:34 +09:00
commit ae11528dd9
867 changed files with 209640 additions and 0 deletions

228
frontend/css/style.css Normal file
View File

@@ -0,0 +1,228 @@
:root {
--bg-color: #0f172a;
--card-bg: rgba(30, 41, 59, 0.7);
--card-border: 1px solid rgba(255, 255, 255, 0.1);
--text-primary: #f8fafc;
--text-secondary: #94a3b8;
--accent-color: #3b82f6;
--accent-glow: 0 0 20px rgba(59, 130, 246, 0.5);
--success-color: #10b981;
--danger-color: #ef4444;
--glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
body {
background-color: var(--bg-color);
background-image: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 20%),
radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 20%);
color: var(--text-primary);
min-height: 100vh;
display: flex;
flex-direction: column;
}
/* Navigation */
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
background: rgba(15, 23, 42, 0.8);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
position: sticky;
top: 0;
z-index: 100;
}
.logo {
font-size: 1.5rem;
font-weight: 700;
background: linear-gradient(45deg, #3b82f6, #10b981);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.nav-links {
display: flex;
gap: 1.5rem;
}
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active {
color: var(--text-primary);
text-shadow: 0 0 10px rgba(255,255,255,0.3);
}
/* Layout */
.container {
padding: 2rem;
max-width: 1200px;
margin: 0 auto;
width: 100%;
flex: 1;
}
/* Cards */
.card {
background: var(--card-bg);
border: var(--card-border);
border-radius: 16px;
padding: 1.5rem;
margin-bottom: 1.5rem;
box-shadow: var(--glass-shadow);
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
transition: transform 0.2s;
}
.card:hover {
transform: translateY(-2px);
}
.card h2 {
margin-bottom: 1rem;
font-size: 1.25rem;
color: var(--text-primary);
border-bottom: 1px solid rgba(255,255,255,0.05);
padding-bottom: 0.5rem;
}
/* Grid */
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}
/* Table */
table {
width: 100%;
border-collapse: collapse;
margin-top: 1rem;
}
th, td {
padding: 1rem;
text-align: left;
border-bottom: 1px solid rgba(255,255,255,0.05);
}
th {
color: var(--text-secondary);
font-weight: 600;
font-size: 0.9rem;
}
td {
color: var(--text-primary);
}
/* Buttons */
.btn {
padding: 0.75rem 1.5rem;
border-radius: 8px;
border: none;
cursor: pointer;
font-weight: 600;
transition: all 0.3s;
}
.btn-primary {
background: linear-gradient(135deg, #3b82f6, #2563eb);
color: white;
box-shadow: var(--accent-glow);
}
.btn-primary:hover {
filter: brightness(1.1);
}
.btn-danger {
background: linear-gradient(135deg, #ef4444, #dc2626);
color: white;
}
.btn-success {
background: linear-gradient(135deg, #10b981, #059669);
color: white;
}
/* Form */
.form-group {
margin-bottom: 1.5rem;
}
label {
display: block;
margin-bottom: 0.5rem;
color: var(--text-secondary);
}
input, select, textarea {
width: 100%;
padding: 0.8rem;
border-radius: 8px;
background: rgba(15, 23, 42, 0.5);
border: 1px solid rgba(255,255,255,0.1);
color: white;
font-size: 1rem;
}
input:focus {
outline: none;
border-color: var(--accent-color);
box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}
/* Utilities */
.text-success { color: var(--success-color); }
.text-danger { color: var(--danger-color); }
.text-muted { color: var(--text-secondary); }
/* Badge */
.badge {
padding: 0.25rem 0.75rem;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
}
.badge-success { background: rgba(16, 185, 129, 0.2); color: #10b981; }
.badge-secondary { background: rgba(148, 163, 184, 0.2); color: #94a3b8; }
/* Mobile */
@media (max-width: 768px) {
.grid { grid-template-columns: 1fr; }
.nav-links { gap: 1rem; font-size: 0.9rem; }
}
/* Loading */
.loading {
display: inline-block;
width: 20px;
height: 20px;
border: 3px solid rgba(255,255,255,.3);
border-radius: 50%;
border-top-color: #fff;
animation: spin 1s ease-in-out infinite;
-webkit-animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
@-webkit-keyframes spin {
to { -webkit-transform: rotate(360deg); }
}