-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (57 loc) · 1.72 KB
/
style.css
File metadata and controls
65 lines (57 loc) · 1.72 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
body {
font-family: 'Fredoka One', cursive, Arial, sans-serif; /* Exemplo de fonte do Google Fonts */
background-color: #F2E6CE;
margin: 0;
padding: 10px;
}
header {
background-color: #FFF; /* Fundo mais claro para o header */
padding: 20px;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
border-radius: 8px; /* Cantos arredondados */
margin-bottom: 20px;
}
h1 {
color: #FF5722; /* Um laranja vibrante */
font-size: 2.5em;
}
nav a {
text-decoration: none;
color: #4CAF50; /* Um verde mais alegre */
padding: 10px 15px; /* Mais padding para os links */
font-weight: bold;
transition: color 0.3s ease; /* Transição suave na cor */
}
nav a:hover {
color: #FFC107; /* Um amarelo para o hover */
text-decoration: none; /* Remove o underline padrão */
}
main section {
background-color: #FFF;
margin: 20px auto; /* Centraliza as seções e adiciona margem */
padding: 30px;
border-radius: 10px; /* Cantos arredondados */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
max-width: 800px; /* Limita a largura do conteúdo para melhor leitura */
}
footer {
text-align: center;
padding: 20px;
margin-top: 30px;
background-color: #333;
color: #EEE;
border-radius: 8px;
}
img {
max-width: 100%; /* Imagens responsivas */
height: auto; /* Mantém a proporção */
border-radius: 8px; /* Cantos arredondados para imagens */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra suave para imagens */
}
.imagem-centralizada {
display: block;
margin: 0 auto;
max-width: 100%; /* Para manter responsivo */
height: auto;
}