-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
35 lines (31 loc) · 827 Bytes
/
Copy pathstyle.css
File metadata and controls
35 lines (31 loc) · 827 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
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #FFC0CB;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
}
li {
margin: 0;
padding: 10px 20px;
background-color: #FF1493;
color: #fff;
cursor: pointer;
transition: background-color 0.3s;
border-radius: 4px;
}
li:hover {
background-color: #FF69B4;
}
li + li {
margin-left: 5px; /* Espaçamento entre os itens */
}