mirror of
https://gitlab.com/parroquia-san-leandro/cancionero-web.git
synced 2026-01-28 13:07:58 +01:00
convert .less files to .css and remove dependency
This commit is contained in:
parent
aaea68ef1e
commit
1b9529455d
16 changed files with 427 additions and 416 deletions
48
res_gen/static/song.css
Normal file
48
res_gen/static/song.css
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
@import "colors.css";
|
||||
|
||||
button,
|
||||
select,
|
||||
input[type="button"] {
|
||||
min-width: 2em;
|
||||
min-height: 2em;
|
||||
padding: .4em;
|
||||
border-style: none;
|
||||
border-radius: var(--border-radius);
|
||||
color: var(--text-color);
|
||||
background-color: var(--secondary-color);
|
||||
@media (prefers-color-scheme: dark) {
|
||||
color: var(--text-color-dark);
|
||||
background-color: var(--secondary-color-dark);
|
||||
}
|
||||
&:hover,
|
||||
&.pair-sub:hover ~ &.pair-sup {
|
||||
background-color: var(--secondary-hover-color);
|
||||
transition-duration: var(--transition-duration);
|
||||
@media (prefers-color-scheme: dark) {
|
||||
background-color: var(--secondary-hover-color-dark);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.flex-reverse {
|
||||
display: inline-flex;
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
|
||||
.buttonpair.flex-reverse button.right,
|
||||
.buttonpair.flex-reverse button.left {
|
||||
border: 1px solid var(--secondary-hover-color);
|
||||
@media (prefers-color-scheme: dark) {
|
||||
border-color: var(--secondary-hover-color-dark);
|
||||
}
|
||||
}
|
||||
|
||||
.buttonpair.flex-reverse button.right {
|
||||
border-radius: 0px 10px 10px 0px;
|
||||
border-width: 0 0 0 2px;
|
||||
}
|
||||
|
||||
.buttonpair.flex-reverse button.left {
|
||||
border-radius: 10px 0px 0px 10px;
|
||||
border-width: 0 2px 0 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue