모의투자, 백테스팅 레이아웃 수정

This commit is contained in:
Macbook
2026-05-24 20:13:21 +09:00
parent 958b813f3b
commit af230a4233
23 changed files with 2394 additions and 782 deletions
+2 -171
View File
@@ -11317,173 +11317,8 @@ html.theme-light .tam-disclaimer { color: #90a4ae; }
.admin-perm-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 6px 12px; max-height: 360px; overflow-y: auto; padding: 8px; background: var(--bg3); border-radius: 6px; border: 1px solid var(--border); }
.admin-perm-item { display: flex; align-items: center; gap: 8px; font-size: 12px; cursor: pointer; }
/*
SPLASH (진입 화면)
*/
.splash {
position: fixed;
inset: 0;
z-index: 10000;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: #0a0e14;
color: #e8eaed;
overflow: auto;
padding: 24px 16px 48px;
}
.splash-bg {
position: absolute;
inset: 0;
background:
radial-gradient(ellipse 80% 50% at 50% -10%, rgba(33, 150, 243, 0.25), transparent),
radial-gradient(ellipse 60% 40% at 100% 80%, rgba(255, 213, 79, 0.08), transparent),
linear-gradient(180deg, #0d1117 0%, #0a0e14 100%);
pointer-events: none;
}
.splash-chart-deco {
position: absolute;
left: 0;
right: 0;
bottom: 18%;
height: 140px;
opacity: 0.55;
pointer-events: none;
}
.splash-chart-svg { width: 100%; height: 100%; }
.splash-line {
stroke-dasharray: 600;
animation: splash-draw 2.5s ease-out forwards;
}
@keyframes splash-draw {
from { stroke-dashoffset: 600; }
to { stroke-dashoffset: 0; }
}
.splash-inner {
position: relative;
z-index: 1;
width: 100%;
max-width: 480px;
display: flex;
flex-direction: column;
align-items: center;
gap: 24px;
}
.splash-brand { text-align: center; }
.splash-logo { margin-bottom: 12px; filter: drop-shadow(0 4px 20px rgba(33, 150, 243, 0.4)); }
.splash-title {
margin: 0;
font-size: 2rem;
font-weight: 700;
letter-spacing: -0.02em;
background: linear-gradient(135deg, #fff 0%, #90caf9 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.splash-tagline {
margin: 8px 0 0;
font-size: 14px;
color: #9aa0a6;
line-height: 1.5;
}
.splash-features {
list-style: none;
margin: 0;
padding: 0;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px 16px;
width: 100%;
font-size: 12px;
color: #b0b8c4;
}
.splash-features li {
display: flex;
align-items: center;
gap: 6px;
}
.splash-feat-icon { font-size: 14px; }
.splash-card {
width: 100%;
padding: 24px;
background: rgba(22, 28, 36, 0.85);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 12px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
backdrop-filter: blur(12px);
}
.splash-card-title { margin: 0 0 6px; font-size: 18px; font-weight: 600; }
.splash-card-desc { margin: 0 0 16px; font-size: 13px; color: #9aa0a6; line-height: 1.5; }
.splash-form { display: flex; flex-direction: column; gap: 12px; }
.splash-form-row { display: flex; flex-direction: column; gap: 10px; }
.splash-field { display: flex; flex-direction: column; gap: 4px; font-size: 12px; color: #9aa0a6; }
.splash-field input {
padding: 10px 12px;
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 6px;
background: #0d1117;
color: #e8eaed;
font-size: 14px;
}
.splash-field input:focus {
outline: none;
border-color: #2196f3;
box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.25);
}
.splash-error { margin: 0; font-size: 12px; color: #ef5350; }
.splash-actions {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.splash-btn {
flex: 1;
min-width: 120px;
padding: 11px 18px;
border-radius: 6px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
border: none;
transition: background 0.15s, transform 0.1s;
}
.splash-btn:disabled { opacity: 0.55; cursor: not-allowed; }
.splash-btn--primary {
background: #2196f3;
color: #fff;
}
.splash-btn--primary:hover:not(:disabled) { background: #42a5f5; }
.splash-btn--guest {
background: transparent;
color: #90caf9;
border: 1px solid rgba(33, 150, 243, 0.5);
}
.splash-btn--guest:hover:not(:disabled) {
background: rgba(33, 150, 243, 0.12);
border-color: #42a5f5;
}
.splash-footnote {
margin: 14px 0 0;
font-size: 11px;
color: #6b7280;
text-align: center;
}
.splash-footnote code {
padding: 1px 5px;
background: rgba(255, 255, 255, 0.06);
border-radius: 3px;
font-size: 10px;
}
.splash-footer {
position: relative;
z-index: 1;
margin-top: auto;
padding-top: 24px;
font-size: 11px;
color: #4b5563;
}
/* splash styles moved to styles/splashScreen.css */
.tmb-guest-badge {
font-size: 12px;
font-weight: 600;
@@ -11493,7 +11328,3 @@ html.theme-light .tam-disclaimer { color: #90a4ae; }
border-radius: 10px;
background: rgba(255, 193, 7, 0.1);
}
@media (min-width: 520px) {
.splash-form-row { flex-direction: row; }
.splash-form-row .splash-field { flex: 1; }
}