Files
wgenerator/src/app/widget-modules/components/song-text/song-text.component.less
2026-03-09 16:53:55 +01:00

82 lines
1.2 KiB
Plaintext

.song-text {
white-space: pre-wrap;
position: relative;
&.chords {
font-family: 'Ubuntu Mono', monospace;
@media screen and (max-width: 600px) {
font-size: 0.9em;
}
@media screen and (max-width: 500px) {
font-size: 0.8em;
}
@media screen and (max-width: 400px) {
font-size: 0.7em;
}
@media screen and (max-width: 350px) {
font-size: 0.6em;
}
}
&:hover .menu {
opacity: 1;
}
}
.line {
opacity: 1;
transition: 100ms all ease-in-out;
&.disabled {
opacity: 0.5;
}
}
.menu {
position: absolute;
right: -10px;
top: -10px;
}
.section {
margin-bottom: 20px;
@media screen and (max-width: 860px) {
margin-bottom: 10px;
}
}
.chorus {
margin-left: 20px;
border-left: none;
}
.chord {
color: var(--primary-active);
text-shadow: 0 0 1px var(--primary-hover);
}
.offset {
position: fixed;
top: 0;
left: 40px;
right: 40px;
transition: 1000ms top ease-in-out;
}
.error {
color: var(--danger);
font-size: 1.2em;
font-weight: bold;
}
.comment {
color: var(--primary-active);
border-left: 2px solid var(--primary-hover);
padding-left: 6px;
font-style: italic;
}