-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboards.html
More file actions
74 lines (59 loc) · 1.28 KB
/
dashboards.html
File metadata and controls
74 lines (59 loc) · 1.28 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
<section id="dashboards">
<h2>Dashboards Científicos</h2>
<p class="descricao">
Plataformas analíticas interativas desenvolvidas para explorar modelagem espacial,
dinâmica do fogo, degradação florestal e impactos econômicos no Brasil.
</p>
<div class="botoes-dashboard">
<a class="dashboard-btn fogo"
href="fogo_foco.html">
🔥 Dashboard Fogo em Foco
</a>
</div>
<p class="obs">
O dashboard será aberto em uma nova página.
</p>
</section>
<style>
#dashboards {
padding: 40px 0;
}
#dashboards h2 {
color: #2c3e50;
border-bottom: 2px solid #e67e22;
padding-bottom: 6px;
margin-bottom: 20px;
}
#dashboards .descricao {
margin-bottom: 25px;
font-size: 1.05em;
}
.botoes-dashboard {
display: flex;
gap: 20px;
flex-wrap: wrap;
}
.dashboard-btn {
display: inline-block;
padding: 14px 26px;
border-radius: 10px;
text-decoration: none;
font-weight: 600;
transition: all 0.25s ease;
box-shadow: 0 4px 10px rgba(0,0,0,0.08);
font-size: 1.05em;
}
.dashboard-btn.fogo {
background: linear-gradient(135deg, #e67e22, #d35400);
color: white;
}
.dashboard-btn:hover {
transform: translateY(-3px);
box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.obs {
margin-top: 20px;
font-size: 0.9em;
color: #666;
}
</style>