-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
48 lines (41 loc) · 1.24 KB
/
index.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
header {
display: flex;
align-items: center;
justify-content: space-around;
background-color: lightblue;
padding:20px;
}
header img {
border-radius: 50%;
width:300px;
height:300px;
}
header h1 {
font-weight: bold;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
nav {
background-color: blueviolet;
height: 30px;
display: flex;
align-items: center;
}
nav ul {
display: flex;
list-style: none;
margin: 0;
padding: 0;
width: 100%;
justify-content: center; /* Centraliza os itens no container */
}
nav ul li {
height:30px;
width: 100%;
background-color: rgb(0, 0, 0); /* Cor de fundo dos itens */
color: rgb(46, 228, 22); /* Cor do texto dos itens */
margin: 0; /* Remove a margem para garantir que o fundo ocupe a largura */
padding: 10px 20px; /* Adiciona espaçamento interno */
display: flex; /* Faz com que o item se comporte como um container flexível */
justify-content: center; /* Centraliza o conteúdo dentro do item */
align-items: center; /* Alinha verticalmente o conteúdo */
}