-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconteudo.css
104 lines (81 loc) · 1.67 KB
/
conteudo.css
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
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
color: #333;
}
.container {
max-width: 960px;
margin: 20px auto;
padding: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h1, h2, h3 {
color: #007bff; /* Azul */
}
ul {
list-style-type: disc;
padding-left: 40px;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.highlight {
background-color: #f8f9fa;
padding: 10px;
border-radius: 4px;
margin-bottom: 10px;
}
/* Estilos para o gráfico de barras */
.graph-container {
width: 100%;
max-width: 600px;
margin: 20px auto;
}
.bar-chart {
display: flex;
justify-content: space-around;
align-items: flex-end;
height: 300px;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.bar {
width: 50px;
background-color: #28a745; /* Cor verde */
margin: 0 10px;
border-radius: 4px 4px 0 0;
}
.bar-2022 {
height: 70%; /* Altura da barra de 2022 */
}
.bar-2023 {
height: 100%; /* Altura da barra de 2023 */
}
.bar span {
display: block;
text-align: center;
margin-top: 10px;
color: #333;
}
.topic {
margin-bottom: 30px;
}
.topic-image {
max-width: 100%;
height: auto;
display: block;
margin: 10px auto;
}
.topic p {
text-align: center;
}