mirror of
https://github.com/KuekHaoYang/KVideo.git
synced 2026-08-15 08:43:44 +08:00
45 lines
994 B
CSS
45 lines
994 B
CSS
@import "tailwindcss";
|
|
@import "./scroll-optimization.css";
|
|
@import "./styles/variables.css";
|
|
@import "./styles/base.css";
|
|
@import './styles/transitions.css';
|
|
@import './styles/effects.css';
|
|
@import './styles/glass.css';
|
|
@import "./styles/video-player.css";
|
|
@import "./styles/search-history.css";
|
|
@keyframes jiggle {
|
|
0% { transform: rotate(-1deg); }
|
|
50% { transform: rotate(1deg); }
|
|
100% { transform: rotate(-1deg); }
|
|
}
|
|
|
|
.animate-jiggle {
|
|
animation: jiggle 0.2s infinite;
|
|
}
|
|
|
|
/* Remove standard arrow for number input */
|
|
.no-spinner::-webkit-inner-spin-button,
|
|
.no-spinner::-webkit-outer-spin-button {
|
|
-webkit-appearance: none;
|
|
margin: 0;
|
|
}
|
|
|
|
.no-spinner {
|
|
-moz-appearance: textfield;
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
html {
|
|
scroll-behavior: auto;
|
|
}
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
animation-duration: 0.01ms !important;
|
|
animation-iteration-count: 1 !important;
|
|
transition-duration: 0.01ms !important;
|
|
scroll-behavior: auto !important;
|
|
}
|
|
}
|