-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilo.css
More file actions
57 lines (48 loc) · 719 Bytes
/
estilo.css
File metadata and controls
57 lines (48 loc) · 719 Bytes
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
body {
font-family: Arial, sans-serif;
margin: 0;
}
header {
background-color: pink;
text-align: center;
padding: 20px;
}
nav {
background-color: white;
text-align: center;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
justify-content: space-around;
}
nav a {
display: block;
color: black;
padding: 10px;
text-decoration: none;
}
nav a:hover {
background-color: pink;
color: white;
}
main {
max-width: 800px;
margin: 20px auto;
}
.personagem {
display: flex;
flex-direction: column;
align-items: center;
margin: 20px;
}
.personagem img {
max-width: 200px;
}
footer {
background-color: pink;
text-align: center;
padding: 10px;
}