diff options
Diffstat (limited to 'panel/src/pages/Dashboard.css')
-rw-r--r-- | panel/src/pages/Dashboard.css | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/panel/src/pages/Dashboard.css b/panel/src/pages/Dashboard.css new file mode 100644 index 0000000..08a15eb --- /dev/null +++ b/panel/src/pages/Dashboard.css @@ -0,0 +1,63 @@ +.dashboard { + display: flex; + flex-direction: column; + align-items: center; + background-color: #f4f7fc; + min-height: 100vh; +} + +.dashboard-container { + width: 90%; + max-width: 1200px; + margin-top: 20px; + padding: 20px; + background-color: white; + border-radius: 10px; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); +} + +.dashboard-header { + text-align: center; + margin-bottom: 30px; +} + +.dashboard-header h4 { + font-size: 28px; + color: #333; +} + +.dashboard-stats { + display: flex; + justify-content: space-between; + margin-bottom: 30px; +} + +.stat-card { + flex: 1; + padding: 20px; + margin: 0 10px; + background-color: #f9fafc; + border-radius: 10px; + text-align: center; + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); +} + +.stat-card h6 { + font-size: 16px; + color: #666; + margin-bottom: 10px; +} + +.stat-card p { + font-size: 24px; + color: #333; +} + +.chart-container { + margin-top: 30px; +} + +.chart-container canvas { + width: 100% !important; + height: 400px !important; +} |