blob: 39d68e3f440cc61655d2bc32f17ea684842d79a4 (
plain) (
blame)
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
|
.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: 10px;
}
.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: 20px;
}
.chart-container canvas {
width: 70% !important;
margin: 0 auto;
height: 70% !important;
}
@media (max-width: 768px) {
.stat-card {
margin: 0px 4px;
padding: 10px;
text-align: center;
}
}
|