start program page

This commit is contained in:
isUnknown 2024-08-28 19:11:58 +02:00
parent f75d7b390e
commit 3694b55357
10 changed files with 150 additions and 52 deletions

View file

@ -36,25 +36,25 @@
display: inline-flex;
}
a:not([disabled]):hover .ticket svg,
.ticket:hover svg {
a:not([disabled]):hover > .ticket svg,
.ticket:not(a[disabled] .ticket):hover svg {
animation: vibrate 0.5s forwards;
}
.ticket:hover svg path:not(.dot),
a:not([disabled]):hover .ticket svg path:not(.dot) {
.ticket:not(a[disabled] .ticket):hover svg path:not(.dot),
a:not([disabled]):hover > .ticket svg path:not(.dot) {
fill: var(--color-salmon);
stroke: var(--color-salmon);
}
a.to-blank:hover .ticket svg path:not(.dot) {
a.to-blank:hover > .ticket svg path:not(.dot) {
fill: #fff;
stroke: #fff;
}
.ticket:hover svg path.dot,
a:not([disabled]):hover .ticket svg path.dot {
.ticket:not(a[disabled] .ticket):hover svg path.dot,
a:not([disabled]):hover > .ticket svg path.dot {
fill: #fff;
}
a.to-blank:hover .ticket svg path.dot {
a.to-blank:hover > .ticket svg path.dot {
fill: var(--color-salmon);
}