2020-12-12 16:20:41 +01:00
|
|
|
@import "colors.less";
|
|
|
|
|
2020-10-14 00:54:52 +02:00
|
|
|
table.chordedline {
|
|
|
|
border-spacing: 0px;
|
2020-12-12 16:20:41 +01:00
|
|
|
display: inline-block;
|
2020-10-14 00:54:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.song div {
|
|
|
|
padding: 0.5em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chordedline td {
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chord {
|
|
|
|
font-style: italic;
|
2020-12-12 16:20:41 +01:00
|
|
|
color: @chord-color;
|
2020-10-14 00:54:52 +02:00
|
|
|
}
|
|
|
|
|
2020-12-12 16:20:41 +01:00
|
|
|
div.chorus {
|
2020-10-14 00:54:52 +02:00
|
|
|
font-weight: bold;
|
|
|
|
border-left: black 2px solid;
|
|
|
|
padding-left: 0.5em;
|
2020-12-12 16:20:41 +01:00
|
|
|
div {
|
|
|
|
padding-left: 0.5em;
|
|
|
|
}
|
|
|
|
table {
|
|
|
|
margin-left: 0;
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
2020-10-14 00:54:52 +02:00
|
|
|
}
|
|
|
|
|
2020-12-12 16:20:41 +01:00
|
|
|
.rrep {
|
|
|
|
background-image: url(repeat-sign.svg);
|
|
|
|
display: inline-block;
|
|
|
|
width: 1em;
|
|
|
|
height: 2em;
|
2020-10-14 00:54:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.lrep {
|
|
|
|
-moz-transform: scaleX(-1);
|
|
|
|
-o-transform: scaleX(-1);
|
|
|
|
-webkit-transform: scaleX(-1);
|
|
|
|
transform: scaleX(-1);
|
|
|
|
filter: FlipV;
|
|
|
|
-ms-filter: "FlipV";
|
2020-12-12 16:20:41 +01:00
|
|
|
.rrep();
|
2020-10-14 00:54:52 +02:00
|
|
|
}
|
|
|
|
|
2020-12-12 16:20:41 +01:00
|
|
|
.rep {
|
|
|
|
font-style: italic;
|
2020-10-14 00:54:52 +02:00
|
|
|
}
|
|
|
|
|
2020-12-12 16:20:41 +01:00
|
|
|
.echo {
|
2020-10-14 00:54:52 +02:00
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
2020-12-12 16:20:41 +01:00
|
|
|
button, select#transposeSelect {
|
|
|
|
min-width: 2em;
|
|
|
|
min-height: 2em;
|
|
|
|
padding: .4em;
|
|
|
|
border-style: none;
|
|
|
|
border-radius: @border-radius;
|
|
|
|
background-color: @secondary;
|
|
|
|
&:hover {
|
|
|
|
background-color: @secondary-hover;
|
|
|
|
transition-duration: @transition;
|
|
|
|
}
|
2020-10-14 00:54:52 +02:00
|
|
|
}
|
|
|
|
|
2020-12-12 16:20:41 +01:00
|
|
|
select#transposeSelect {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
font-weight: bold;
|
|
|
|
color: black;
|
2020-10-14 00:54:52 +02:00
|
|
|
}
|