-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
125 lines (99 loc) · 1.53 KB
/
Copy pathstyle.css
File metadata and controls
125 lines (99 loc) · 1.53 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
:root{
--bg:#08141f;
--card:#122434;
--green:#32d583;
--yellow:#facc15;
--blue:#38bdf8;
--text:#f1f5f9;
--gray:#94a3b8;
}
body{
background:linear-gradient(135deg,#08141f,#0f2233);
color:var(--text);
font-family:Arial, Helvetica, sans-serif;
padding:30px;
}
/* HEADER */
.header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:40px;
flex-wrap:wrap;
gap:20px;
}
.logo{
display:flex;
align-items:center;
gap:10px;
}
.logo span{
font-size:40px;
}
.logo h1{
color:var(--green);
font-size:2rem;
}
.date{
color:var(--gray);
}
/* DASHBOARD */
.dashboard{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}
/* CARD */
.card{
background:var(--card);
padding:25px;
border-radius:18px;
box-shadow:0 5px 20px rgba(0,0,0,0.3);
transition:0.3s;
}
.card:hover{
transform:translateY(-5px);
}
.card h2{
color:var(--blue);
margin-bottom:15px;
}
.value{
font-size:2.5rem;
font-weight:bold;
color:var(--yellow);
margin-bottom:10px;
}
.card p{
color:var(--gray);
}
/* CHART */
.chart-container{
margin-top:35px;
background:var(--card);
padding:25px;
border-radius:18px;
box-shadow:0 5px 20px rgba(0,0,0,0.3);
}
.chart-container h2{
margin-bottom:20px;
color:var(--blue);
}
/* FOOTER */
.footer{
text-align:center;
margin-top:40px;
color:var(--gray);
}
/* RESPONSIVO */
@media(max-width:768px){
body{
padding:20px;
}
.logo h1{
font-size:1.5rem;
}
.value{
font-size:2rem;
}
}