-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
111 lines (98 loc) · 1.81 KB
/
styles.css
File metadata and controls
111 lines (98 loc) · 1.81 KB
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
.client-dashboard-container {
padding: 20px;
}
.spinner-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 150px;
color: #555;
}
.spinner {
width: 40px;
height: 40px;
border: 4px solid rgba(0, 0, 0, 0.1);
border-left-color: #f9a43a;
border-radius: 50%;
animation: spin 1s linear infinite;
margin-bottom: 10px;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
.error-message {
color: #dc3545;
padding: 15px;
background-color: #f8d7da;
border: 1px solid #f5c6cb;
border-radius: 5px;
margin-top: 20px;
}
.charts-row {
display: flex;
gap: 20px;
margin-bottom: 20px;
}
.chart-widget {
flex: 1;
height: 350px;
display: flex;
flex-direction: column;
justify-content: flex-end;
background-color: #fff;
padding: 15px;
margin-top: 10px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
border: 1px solid #eee;
}
.summary-widgets {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
}
.summary-widget {
background-color: #fff;
padding: 15px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
border: 1px solid #eee;
}
.chart-widget h3,
.summary-widget h3 {
margin-top: 0;
margin-bottom: 10px;
font-size: 1.1em;
color: #333;
}
.metric-value {
font-size: 1.3em;
font-weight: bold;
color: #198754;
}
.spinner-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 150px;
color: #555;
width: 100%;
}
.spinner {
width: 40px;
height: 40px;
border: 4px solid rgba(0, 0, 0, 0.1);
border-left-color: #f9a43a;
border-radius: 50%;
animation: spin 1s linear infinite;
margin-bottom: 10px;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}