2020-12-12 16:20:41 +01:00
|
|
|
@import "colors";
|
|
|
|
|
|
|
|
.songs {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
> a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
> li {
|
|
|
|
background-color: @secondary;
|
|
|
|
margin: .5em;
|
|
|
|
padding: .6em;
|
|
|
|
border-radius: @border-radius;
|
|
|
|
.number {
|
|
|
|
font-weight: bolder;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
color: @text-hover;
|
|
|
|
background-color: @secondary-hover;
|
|
|
|
transition-duration: @transition;
|
|
|
|
}
|
2020-12-24 16:17:13 +01:00
|
|
|
&.noChords {
|
2020-12-12 16:20:41 +01:00
|
|
|
background-color: @nochordscolor;
|
|
|
|
&:hover {
|
|
|
|
color: @text-hover;
|
|
|
|
background-color: @nochordscolor-hover;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-12-24 16:17:13 +01:00
|
|
|
span.noChords {
|
2020-12-12 16:20:41 +01:00
|
|
|
background-color: @nochordscolor;
|
|
|
|
padding: 0.3em 0.4em;
|
|
|
|
border-radius: @border-radius;
|
2020-12-19 10:56:38 +01:00
|
|
|
display: inline-block;
|
2020-12-12 16:20:41 +01:00
|
|
|
}
|