Created
April 24, 2018 18:32
-
-
Save nerdic-coder/02bc3a1f637486a16aff197e598b6b59 to your computer and use it in GitHub Desktop.
Hero list stylesheet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* HeroesComponent's private CSS styles */ | |
.selected { | |
background-color: #CFD8DC !important; | |
color: white; | |
} | |
.heroes { | |
margin: 0 0 2em 0; | |
list-style-type: none; | |
padding: 0; | |
width: 15em; | |
} | |
.heroes li { | |
cursor: pointer; | |
position: relative; | |
left: 0; | |
background-color: #EEE; | |
margin: .5em; | |
padding: .3em 0; | |
height: 1.6em; | |
border-radius: 4px; | |
} | |
.heroes li.selected:hover { | |
background-color: #BBD8DC !important; | |
color: white; | |
} | |
.heroes li:hover { | |
color: #607D8B; | |
background-color: #DDD; | |
left: .1em; | |
} | |
.heroes .text { | |
position: relative; | |
top: -3px; | |
} | |
.heroes .badge { | |
display: inline-block; | |
font-size: small; | |
color: white; | |
padding: 0.8em 0.7em 0 0.7em; | |
background-color: #607D8B; | |
line-height: 1em; | |
position: relative; | |
left: -1px; | |
top: -4px; | |
height: 1.8em; | |
margin-right: .8em; | |
border-radius: 4px 0 0 4px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment