-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
78 lines (66 loc) · 1.18 KB
/
Copy pathstyles.css
File metadata and controls
78 lines (66 loc) · 1.18 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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #0d1117;
color: #c9d1d9;
}
header {
background-color: #000;
color: #fff;
padding: 20px;
text-align: center;
}
h1 {
margin: 0;
font-size: 32px;
font-weight: bold;
letter-spacing: 2px;
}
main {
padding: 20px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
section {
background-color: #0d1117;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
padding: 20px;
margin-bottom: 20px;
}
h2 {
color: #c9d1d9;
margin-top: 0;
font-size: 24px;
}
.chart-container {
margin-top: 20px;
}
canvas {
width: 100%;
height: 300px;
}
footer {
background-color: #000;
color: #fff;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}
.data-section{
display: flex;
}
.container {
display: flex;
justify-content: space-between;
max-width: 1000px;
margin: 0 auto;
}
.column {
flex: 1;
margin-right: 20px;
}