17 lines
451 B
CSS
17 lines
451 B
CSS
.heroes {list-style-type: none; margin-left: 1em; padding: 0; width: 10em;}
|
|
|
|
.heroes li { cursor: pointer; position: relative; left: 0; transition: all 0.2s ease; }
|
|
|
|
.heroes li:hover {color: #369; background-color: #EEE; left: .2em;}
|
|
|
|
.heroes .badge {
|
|
font-size: small;
|
|
color: white;
|
|
padding: 0.1em 0.7em;
|
|
background-color: #369;
|
|
line-height: 1em;
|
|
position: relative;
|
|
left: -1px;
|
|
top: -1px;
|
|
}
|
|
.selected { background-color: #EEE; color: #369; } |