blakeblackshear.frigate/web/src/index.css

56 lines
1.0 KiB
CSS
Raw Normal View History

2021-01-09 18:26:46 +01:00
@tailwind base;
@tailwind components;
@tailwind utilities;
.activityindicator {
border-top-color: currentColor;
-webkit-animation: spinner 0.75s linear infinite;
animation: spinner 0.75s linear infinite;
}
@-webkit-keyframes spinner {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes spinner {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
2021-06-13 21:21:20 +02:00
.jsmpeg canvas {
position: static !important;
}
2022-02-27 15:04:12 +01:00
.hide-scroll::-webkit-scrollbar {
display: none;
}
.hide-scroll {
2022-02-26 20:11:00 +01:00
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
2022-02-27 15:04:12 +01:00
}
/*
Hide some videoplayer controls on mobile devices to
align the video player and bottom control bar properly.
*/
@media only screen and (max-width: 700px) {
.small-player .vjs-time-control,
.small-player .vjs-time-divider {
display: none;
}
div.vjs-control-bar > .skip-back.skip-5,
div.vjs-control-bar > .skip-forward.skip-10 {
display: none;
}
}