blob: 024df9b2e48500833ae97dae56bc3a5780af54c2 (
plain) (
tree)
|
|
.dashboard {
display: flex;
flex-direction: column;
align-items: center;
background-color: #f4f7fc;
min-height: 100vh;
padding: 20px;
}
.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;
}
|