forked from marquez.juan/clase-9-eventos
17 lines
237 B
CSS
17 lines
237 B
CSS
div {
|
|
background-color: #DAE889;
|
|
padding: 10px;
|
|
margin: 10px;
|
|
}
|
|
|
|
li {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.selected {
|
|
background-color: #007bff;
|
|
color: white;
|
|
font-weight: bold;
|
|
border-radius: 6px;
|
|
padding: 4px 8px;
|
|
} |