-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdashboard.css
More file actions
43 lines (38 loc) · 727 Bytes
/
dashboard.css
File metadata and controls
43 lines (38 loc) · 727 Bytes
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
/* styles.css */
body {
font-family: Arial, sans-serif;
background-color: #f1f1f1;
text-align: center;
margin: 0;
padding: 0;
}
.dashboard-container {
max-width: 1200px;
margin: 0 auto;
background-color: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
header {
background-color: #3498db;
color: #fff;
padding: 20px;
}
.widgets, .charts {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: space-between;
padding: 20px;
}
.widget, .chart {
flex: 1;
background-color: #fff;
padding: 20px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
border-radius: 5px;
text-align: center;
}
canvas {
max-width: 100%;
}