better gated firefox specific code
This commit is contained in:
parent
8ceb31bcbb
commit
cb8d23842c
3 changed files with 28 additions and 12 deletions
|
|
@ -162,8 +162,24 @@
|
|||
right: 4px;
|
||||
}
|
||||
|
||||
/* Marquee animation driven by Web Animations API in site.js
|
||||
(pixel-precise endpoints for seamless looping) */
|
||||
/* Marquee animations (Chrome/Safari — Firefox uses JS in site.js) */
|
||||
.tab-row.scroll-left {
|
||||
animation: marquee-left var(--speed) linear infinite;
|
||||
}
|
||||
|
||||
.tab-row.scroll-right {
|
||||
animation: marquee-right var(--speed) linear infinite;
|
||||
}
|
||||
|
||||
@keyframes marquee-left {
|
||||
0% { transform: translateX(0); }
|
||||
100% { transform: translateX(-50%); }
|
||||
}
|
||||
|
||||
@keyframes marquee-right {
|
||||
0% { transform: translateX(-50%); }
|
||||
100% { transform: translateX(0); }
|
||||
}
|
||||
|
||||
/* Inline iframe viewer */
|
||||
.iframe-viewer {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue