mirror of
https://gitlab.com/parroquia-san-leandro/cancionero-web.git
synced 2024-12-22 16:53:34 +01:00
ae5e6b6cf0
* data format * replace js link to a tag * css fixes * changed link structure to /{number}/{name}/
62 lines
1.1 KiB
CSS
62 lines
1.1 KiB
CSS
.songs {
|
|
margin: 0 0 2em 0;
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.songs li {
|
|
cursor: pointer;
|
|
position: relative;
|
|
left: 0;
|
|
background-color: #EEE;
|
|
margin: .5em;
|
|
padding: .3em 0;
|
|
min-height: 1.6em;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.songs li a {
|
|
color: inherit;
|
|
text-decoration: inherit;
|
|
}
|
|
|
|
.songs li:hover {
|
|
color: #607D8B;
|
|
background-color: #DDD;
|
|
transition-duration: 500ms;
|
|
}
|
|
|
|
/* .songs li.selected {
|
|
background-color: #CFD8DC;
|
|
transition-duration: 100ms;
|
|
}
|
|
|
|
.songs li.selected:hover {
|
|
background-color: #BBD8DC;
|
|
color: white;
|
|
transition-duration: 500ms;
|
|
} */
|
|
|
|
.songs li.hasChords {
|
|
background-color: #FBB;
|
|
}
|
|
|
|
.songs li.hasChords:hover {
|
|
color: #607D8B;
|
|
background-color: #FAA;
|
|
}
|
|
|
|
.songs .numberBadge {
|
|
display: inline-block;
|
|
font-size: small;
|
|
color: white;
|
|
padding: 0.8em 0.7em 0 0.7em;
|
|
background-color: #405061;
|
|
line-height: 1em;
|
|
position: relative;
|
|
left: -1px;
|
|
top: -4px;
|
|
min-height: 1.8em;
|
|
margin-right: .8em;
|
|
border-radius: 4px 0 0 4px;
|
|
}
|