aboutsummaryrefslogtreecommitdiffstats
path: root/panel/src/pages/Dashboard.css
blob: 024df9b2e48500833ae97dae56bc3a5780af54c2 (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
.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;
}