-
Notifications
You must be signed in to change notification settings - Fork 1
/
projeto.css
285 lines (244 loc) · 5.8 KB
/
projeto.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Kodchasan', sans-serif;
color: #222222; /* Cor escura para facilitar leitura */
background-color: #f9f9f9; /* Fundo claro para contraste adequado */
scroll-behavior: smooth;
font-size: 1rem;
line-height: 1.6;
}
header {
background-color: #1A1A1A; /* Tom mais claro para melhorar o contraste */
padding: 1.25rem 2.5rem;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 1000;
}
.logo-container {
display: flex;
align-items: center;
}
.logo {
width: 50px;
height: auto;
margin-right: 15px;
transition: transform 0.4s ease;
}
.logo:hover {
transform: scale(1.1);
}
.logo-text {
color: #FFFFFF; /* Cor branca para maior contraste */
font-size: 1.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.125rem;
}
.menu-toggle {
display: none;
background: none;
border: none;
color: #FFFFFF; /* Branco para manter contraste */
font-size: 2rem;
cursor: pointer;
}
.nav-menu {
display: flex;
gap: 1.5rem;
}
.nav-menu a {
color: #FFFFFF; /* Branco para contraste */
text-decoration: none;
font-size: 1.125rem;
font-weight: 500;
padding: 10px;
transition: color 0.2s ease, text-shadow 0.2s ease;
}
.nav-menu a:hover,
.nav-menu a:focus {
color: #FFDD57; /* Cor amarela para destaque */
text-shadow: 0 4px 8px rgba(255, 221, 87, 0.5);
}
.projeto-hero {
background: linear-gradient(135deg, #5B3A99, #4B2A7B); /* Alterado para um tom mais claro e contrastante */
color: #FFFFFF; /* Branco para máximo contraste */
display: flex;
justify-content: center;
align-items: center;
padding: 5rem 1.25rem;
min-height: 80vh;
text-align: center;
}
.projeto-content {
display: flex;
flex-direction: column;
max-width: 800px;
width: 100%;
gap: 2rem;
text-align: left;
}
.projeto-content h1 {
font-size: 2.5rem;
line-height: 1.2;
}
.projeto-content p {
font-size: 1.125rem; /* Padronizado para consistência */
line-height: 1.75; /* Melhorar a legibilidade */
color: #f0f0f0;
margin-bottom: 1.5rem;
}
.forum-btn {
background-color: #2168C0; /* Azul mais claro para contraste */
color: #FFFFFF;
padding: 1rem 2rem; /* Tamanho padrão dos botões */
text-decoration: none;
border-radius: 10px; /* Arredondamento mais acentuado */
font-size: 1.25rem; /* Tamanho de fonte */
font-weight: 600;
display: inline-flex; /* Para alinhar o ícone e o texto */
align-items: center; /* Alinhar o ícone verticalmente */
gap: 1rem; /* Espaço entre o ícone e o texto */
transition: background-color 0.4s, transform 0.4s, box-shadow 0.4s;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Sombra para destaque */
}
.forum-btn:hover {
background-color: #1A4F8A; /* Cor de hover para ambos */
transform: translateY(-3px); /* Elevar levemente o botão ao hover */
}
.forum-btn img {
max-width: 40px; /* Tamanho padrão do ícone dentro dos botões */
height: auto;
transition: transform 0.3s ease; /* Transição suave ao hover */
}
.forum-btn:hover img {
transform: rotate(5deg); /* Efeito de rotação leve no hover */
}
.equipe-section {
padding: 50px;
background-color: #f9f9f9;
}
.equipe-content {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}
.equipe-content h2 {
font-size: 2rem;
color: #333;
margin-bottom: 1.5rem;
}
.equipe-membros {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.membro {
flex: 1 1 30%;
margin: 20px;
text-align: center;
}
.membro img {
width: 200px;
height: 200px;
object-fit: cover;
border-radius: 50%;
}
.membro h3 {
margin-top: 15px;
font-size: 1.5em;
}
.membro p {
font-size: 1em;
color: #666;
}
.ods3-section {
padding: 4rem 1.25rem;
background-color: #FFFFFF; /* Fundo branco para melhor legibilidade */
border-top: 2px solid #ddd;
}
.ods3-content {
max-width: 800px;
margin: 0 auto;
text-align: left;
}
.ods3-content h2 {
font-size: 2rem;
color: #333;
margin-bottom: 1.5rem;
}
.ods3-content p {
font-size: 1.125rem; /* Padronização do tamanho da fonte */
color: #555;
line-height: 1.75; /* Melhorar a legibilidade */
margin-bottom: 1.5rem;
}
footer {
background-color: #1A1A1A; /* Cor mais clara para melhorar contraste */
color: #FDFDFD;
padding: 2rem 1.25rem;
text-align: center;
box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}
.footer-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
}
.footer-nav {
display: flex;
gap: 2rem;
justify-content: center;
}
.footer-nav a {
color: #FFDD57; /* Amarelo para bom contraste */
text-decoration: none;
font-size: 1rem;
transition: color 0.3s ease;
}
.footer-nav a:hover,
.footer-nav a:focus {
color: #FFFFFF;
text-shadow: 0 4px 8px rgba(255, 255, 255, 0.5);
}
/* Menu Toggle para dispositivos menores */
@media (max-width: 768px) {
.menu-toggle {
display: block;
}
.nav-menu {
display: none;
flex-direction: column;
background-color: #1A1A1A; /* Alinhar com a cor do cabeçalho */
position: absolute;
top: 100%;
left: 0;
width: 100%;
padding: 1rem 0;
}
.nav-menu.open {
display: flex;
}
.nav-menu a {
padding: 10px 20px;
text-align: center;
}
.projeto-content,
.ods3-content {
text-align: center;
}
.footer-nav {
flex-direction: column;
gap: 1rem;
}
}