mirror of
https://gitlab.com/parroquia-san-leandro/cancionero-web.git
synced 2026-01-28 13:07:58 +01:00
local resources for generator style
This commit is contained in:
parent
fbb5432c36
commit
2bf763c893
11 changed files with 234 additions and 5 deletions
48
res_gen/less/song.less
Normal file
48
res_gen/less/song.less
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
@import "colors.less";
|
||||
|
||||
button,
|
||||
select,
|
||||
input[type="button"] {
|
||||
min-width: 2em;
|
||||
min-height: 2em;
|
||||
padding: .4em;
|
||||
border-style: none;
|
||||
border-radius: @border-radius;
|
||||
color: @text;
|
||||
background-color: @secondary;
|
||||
@media (prefers-color-scheme: dark) {
|
||||
color: @text-dark;
|
||||
background-color: @secondary-dark;
|
||||
}
|
||||
&:hover,
|
||||
&.pair-sub:hover ~ &.pair-sup {
|
||||
background-color: @secondary-hover;
|
||||
transition-duration: @transition;
|
||||
@media (prefers-color-scheme: dark) {
|
||||
background-color: @secondary-hover-dark;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.flex-reverse {
|
||||
display: inline-flex;
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
|
||||
.buttonpair.flex-reverse button.right,
|
||||
.buttonpair.flex-reverse button.left {
|
||||
border: 1px solid @secondary-hover;
|
||||
@media (prefers-color-scheme: dark) {
|
||||
border-color: @secondary-hover-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