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
|
|
|
|
|
|
|
/*
|
|
|
|
Event.js
|
|
|
|
Maintain aspect ratio and scale down the video container
|
|
|
|
Could not find a proper tailwind css.
|
|
|
|
*/
|
|
|
|
.outer-max-width {
|
2021-09-03 14:11:23 +02:00
|
|
|
max-width: 70%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
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
|
|
|
}
|