2025-06-07 15:22:36 -06:00
|
|
|
@use 'icons';
|
|
|
|
@use 'tooltips';
|
|
|
|
@use 'widgets';
|
|
|
|
@use 'dialog';
|
2017-11-13 01:23:39 -05:00
|
|
|
|
2025-06-07 15:22:36 -06:00
|
|
|
@use 'native/index';
|
|
|
|
@use 'structure/index' as index2;
|
2021-02-11 19:40:12 -05:00
|
|
|
|
2025-06-07 15:22:36 -06:00
|
|
|
@use 'chat';
|
2017-11-13 01:23:39 -05:00
|
|
|
|
|
|
|
@keyframes ffz-rotateplane {
|
|
|
|
0% { transform: rotateY(90deg) rotateX(180deg) }
|
|
|
|
25% { transform: rotateY(0deg) rotateX(180deg) }
|
|
|
|
75% { transform: rotateY(0deg) rotateX(0deg) }
|
|
|
|
100% { transform: rotateY(90deg) rotateX(0deg) }
|
2018-05-10 19:56:39 -04:00
|
|
|
}
|
|
|
|
|
2023-03-30 14:54:33 -04:00
|
|
|
@keyframes ffz-gentle-shake {
|
|
|
|
0% { transform: translate(20px) }
|
|
|
|
20% { transform: translate(-20px) }
|
|
|
|
40% { transform: translate(10px) }
|
|
|
|
60% { transform: translate(-10px) }
|
|
|
|
80% { transform: translate(5px) }
|
|
|
|
100% { transform: translate(0) }
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes ffz--fade {
|
|
|
|
0% { opacity: 1 }
|
|
|
|
50% { opacity: 0.5 }
|
|
|
|
100% { opacity: 1 }
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes ffz-rotate {
|
|
|
|
0% { transform: rotate(0deg); }
|
|
|
|
100% { transform: rotate(360deg); }
|
|
|
|
}
|
|
|
|
|
2021-03-02 16:55:25 -05:00
|
|
|
.ffz--inline {
|
|
|
|
display: inline;
|
|
|
|
}
|
2021-02-26 15:35:26 -05:00
|
|
|
|
2023-12-19 16:24:33 -05:00
|
|
|
.ffz__tooltip .ffz-c-text-youtube,
|
|
|
|
.tw-root--theme-dark .ffz-c-text-youtube {
|
|
|
|
color: #fff !important;
|
|
|
|
}
|
|
|
|
.tw-root--theme-dark .ffz__tooltip .ffz-c-text-youtube,
|
|
|
|
.ffz-c-text-youtube {
|
|
|
|
color: #212121 !important;
|
|
|
|
}
|
|
|
|
|
2021-02-26 15:35:26 -05:00
|
|
|
.ffz--player-meta-tray {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 100%;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
color: var(--color-text-overlay);
|
|
|
|
|
|
|
|
.ffz-stat {
|
|
|
|
background-color: var(--color-background-pill);
|
|
|
|
color: var(--color-text-overlay);
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
line-height: 1;
|
|
|
|
text-align: center;
|
|
|
|
white-space: nowrap;
|
|
|
|
border-radius: 1000px;
|
|
|
|
padding: 0.3rem 0.5rem;
|
|
|
|
font-size: 75%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ffz-stat-text {
|
|
|
|
font-family: "Helvetica Neue",sans-serif;
|
|
|
|
font-variant-numeric: tabular-nums;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-03-27 18:50:32 -04:00
|
|
|
.ffz-new-indicator {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
|
|
|
|
width: 0.8rem;
|
|
|
|
height: 0.8rem;
|
|
|
|
|
|
|
|
background-color: var(--color-fill-new-item-indicator);
|
|
|
|
border-radius: var(--border-radius-rounded);
|
|
|
|
}
|
|
|
|
|
|
|
|
.emote-picker-tab-item .ffz-new-indicator {
|
|
|
|
top: 0.25rem;
|
|
|
|
right: 0.25rem;
|
|
|
|
}
|
|
|
|
|
2023-03-30 14:54:33 -04:00
|
|
|
.ffz--rotate {
|
|
|
|
animation: ffz-rotate 2s infinite linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ffz--shaking {
|
|
|
|
animation: ffz-gentle-shake 0.4s 1 linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
|
|
.ffz--shaking {
|
|
|
|
animation: fade 0.4s 1 linear;
|
|
|
|
}
|
|
|
|
}
|
2023-03-27 18:50:32 -04:00
|
|
|
|
2019-10-18 22:02:50 -04:00
|
|
|
.ffz-i-t-reset.loading,
|
|
|
|
.ffz-i-t-reset-clicked.loading,
|
2018-05-10 19:56:39 -04:00
|
|
|
.ffz-i-zreknarf.loading {
|
|
|
|
animation: ffz-rotateplane 1.2s infinite linear;
|
2019-10-18 20:56:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.ffz-c-text-inherit {
|
|
|
|
color: inherit !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ffz-mg-r--05 {
|
|
|
|
margin-right: -0.5rem !important;
|
|
|
|
}
|
|
|
|
|
2019-11-14 19:52:35 -05:00
|
|
|
.ffz-mg-t-1p {
|
|
|
|
margin-top: 1px !important;
|
|
|
|
}
|
|
|
|
|
2019-10-18 20:56:33 -04:00
|
|
|
.ffz-mg-l--05 {
|
|
|
|
margin-left: -0.5rem !important;
|
2020-07-23 16:00:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.ffz--links {
|
|
|
|
order: 10;
|
2020-08-12 16:10:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.ffz-aspect {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
> :not(.ffz-aspect__spacer) {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
min-height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.ffz-aspect--overflow {
|
|
|
|
overflow: visible
|
|
|
|
}
|
|
|
|
|
|
|
|
.ffz-aspect--align-top > :not(.ffz-aspect__spacer) {
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ffz-aspect--align-center > :not(.ffz-aspect__spacer) {
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.ffz-aspect--align-bottom > :not(.ffz-aspect__spacer) {
|
|
|
|
bottom: 0;
|
2023-12-19 16:24:33 -05:00
|
|
|
}
|