2021-01-09 18:26:46 +01:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
2021-01-30 17:52:37 +01:00
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
2021-08-26 13:54:36 +02:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-09-03 14:11:23 +02: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;
|
|
|
|
}
|
2021-08-26 13:54:36 +02:00
|
|
|
}
|