File size: 2,910 Bytes
fdb0c97 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 | /* --- Global Styles --- */
body {
margin: 0;
padding: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background: linear-gradient(135deg, #fff5f5 0%, #ffe4e6 50%, #fbcfe8 100%);
min-height: 100vh;
}
.app-container {
padding: 40px 20px;
}
.app-wrapper {
max-width: 1400px;
margin: 0 auto;
}
/* --- Typography --- */
.app-header {
text-align: center;
color: #1e1b4b;
font-weight: 800;
margin-bottom: 5px;
}
.app-subtitle {
text-align: center;
color: #be123c;
margin-top: -5px;
font-weight: bold;
letter-spacing: 0.5px;
}
/* --- Layout Grid --- */
.dashboard-grid {
display: flex;
flex-wrap: wrap;
gap: 30px;
margin-top: 35px;
}
/* --- Glassmorphism Sidebar Panel --- */
.sidebar-panel {
flex: 1;
min-width: 320px;
background-color: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
padding: 25px;
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.7);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}
.sidebar-title {
margin-top: 0;
color: #1e1b4b;
border-bottom: 3px solid #e11d48;
padding-bottom: 8px;
font-weight: 700;
}
.control-label {
font-weight: bold;
display: block;
margin-top: 15px;
color: #334155;
margin-bottom: 8px;
}
/* --- Main Content Panel --- */
.main-content {
flex: 2.5;
min-width: 500px;
display: flex;
flex-direction: column;
gap: 20px;
}
/* --- Metric Cards --- */
.metrics-row {
display: flex;
gap: 20px;
}
.metric-card {
flex: 1;
text-align: center;
padding: 20px;
background-color: #ffffff;
border-radius: 12px;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.metric-card.train {
border-left: 5px solid #e11d48;
}
.metric-card.test {
border-left: 5px solid #16a34a;
}
.metric-title-train {
font-size: 11pt;
color: #9f1239;
font-weight: bold;
}
.metric-title-test {
font-size: 11pt;
color: #166534;
font-weight: bold;
}
.metric-value-train {
margin: 5px 0 0 0;
color: #e11d48;
font-weight: 800;
}
.metric-value-test {
margin: 5px 0 0 0;
color: #16a34a;
font-weight: 800;
}
/* --- Chart Containers --- */
.chart-container-large {
background-color: #ffffff;
padding: 20px;
border-radius: 16px;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}
.charts-row-small {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.chart-container-small {
flex: 1;
min-width: 300px;
background-color: #ffffff;
padding: 15px;
border-radius: 16px;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
} |