primo commit

This commit is contained in:
2024-12-17 17:34:10 +01:00
commit e650f8df99
16435 changed files with 2451012 additions and 0 deletions

View File

@ -0,0 +1,724 @@
@charset "UTF-8";
.mejs-offscreen {
clip: rect(1px, 1px, 1px, 1px);
-webkit-clip-path: inset(50%);
clip-path: inset(50%);
word-wrap: normal;
border: 0;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
position: absolute;
overflow: hidden;
}
.mejs-container {
box-sizing: border-box;
text-align: left;
text-indent: 0;
vertical-align: top;
background: #000;
font-family: Helvetica, Arial, serif;
position: relative;
}
.mejs-container * {
box-sizing: border-box;
}
.mejs-container video::-webkit-media-controls, .mejs-container video::-webkit-media-controls-panel, .mejs-container video::-webkit-media-controls-panel-container, .mejs-container video::-webkit-media-controls-start-playback-button {
-webkit-appearance: none;
display: none !important;
}
.mejs-fill-container, .mejs-fill-container .mejs-container {
width: 100%;
height: 100%;
}
.mejs-fill-container {
background: none;
margin: 0 auto;
position: relative;
overflow: hidden;
}
.mejs-container:focus {
outline: none;
}
.mejs-iframe-overlay {
width: 100%;
height: 100%;
position: absolute;
}
.mejs-embed, .mejs-embed body {
background: #000;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
.mejs-fullscreen {
overflow: hidden !important;
}
.mejs-container-fullscreen {
z-index: 1000;
position: fixed;
inset: 0;
overflow: hidden;
}
.mejs-container-fullscreen .mejs-mediaelement, .mejs-container-fullscreen video {
width: 100% !important;
height: 100% !important;
}
.mejs-background {
position: absolute;
top: 0;
left: 0;
}
.mejs-mediaelement {
z-index: 0;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
.mejs-poster {
z-index: 1;
background-position: 50%;
background-repeat: no-repeat;
background-size: cover;
position: absolute;
top: 0;
left: 0;
}
:root .mejs-poster-img {
display: none;
}
.mejs-poster-img {
border: 0;
padding: 0;
}
.mejs-overlay {
justify-content: center;
align-items: center;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
position: absolute;
top: 0;
left: 0;
}
.mejs-layer {
z-index: 1;
}
.mejs-overlay-play {
cursor: pointer;
}
.mejs-overlay-button {
background: none;
border: 0;
}
.mejs-overlay:hover .mejs-overlay-button svg {
opacity: 1;
}
.mejs-overlay-button svg {
opacity: .75;
}
.mejs-overlay-button:focus svg {
opacity: 1;
}
.mejs-overlay-button, .mejs-overlay-button svg, .mejs-overlay-loading, .mejs-overlay-loading svg {
width: 5rem;
height: 5rem;
}
.mejs-overlay-loading-bg-img {
z-index: 1;
width: 5rem;
height: 5rem;
-webkit-animation: 1s linear infinite mejs-loading-spinner;
animation: 1s linear infinite mejs-loading-spinner;
display: block;
}
@-webkit-keyframes mejs-loading-spinner {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes mejs-loading-spinner {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.mejs-controls {
z-index: 3;
width: 100%;
height: 2.5rem;
margin: 0;
padding: 0 .625rem;
list-style-type: none;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
position: absolute;
bottom: 0;
left: 0;
}
.mejs-controls:not([style*="display: none"]) {
background: -webkit-linear-gradient(#0000, #00000059);
background: linear-gradient(#0000, #00000059);
}
.mejs-button, .mejs-time, .mejs-time-rail {
width: 2rem;
height: 2.5rem;
margin: 0;
font-size: .625rem;
line-height: .625rem;
}
.mejs-button > button {
color: #fff;
cursor: pointer;
background-color: #0000;
border: 0;
width: 1.125rem;
height: 1.125rem;
margin: .625rem .375rem;
padding: 0;
font-size: 0;
line-height: 0;
text-decoration: none;
display: block;
position: absolute;
overflow: hidden;
}
.mejs-button svg {
fill: currentColor;
width: 1.125rem;
height: 1.125rem;
}
.mejs-button > button:focus {
outline: .125rem dotted #fff;
}
.mejs-container-keyboard-inactive a, .mejs-container-keyboard-inactive a:focus, .mejs-container-keyboard-inactive button, .mejs-container-keyboard-inactive button:focus, .mejs-container-keyboard-inactive [role="slider"], .mejs-container-keyboard-inactive [role="slider"]:focus {
outline: 0;
}
.mejs-playpause-button svg {
display: none;
}
.mejs-play svg.mejs-icon-play, .mejs-pause svg.mejs-icon-pause, .mejs-replay svg.mejs-icon-replay {
display: block;
}
.mejs-fullscreen-button svg.mejs-icon-unfullscreen {
display: none;
}
.mejs-fullscreen svg.mejs-icon-fullscreen {
display: block;
}
.mejs-fullscreen svg.mejs-icon-unfullscreen {
display: none;
}
.mejs-unfullscreen svg.mejs-icon-unfullscreen {
display: block;
}
.mejs-unfullscreen svg.mejs-icon-fullscreen {
display: none;
}
.mejs-time {
box-sizing: content-box;
color: #fff;
text-align: center;
width: auto;
height: 1.5rem;
padding: 1rem .375rem 0;
font-size: .6875rem;
font-weight: bold;
overflow: hidden;
}
.mejs-time-rail {
direction: ltr;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
-webkit-flex-grow: 1;
flex-grow: 1;
height: 2.5rem;
margin: 0 .625rem;
padding-top: .625rem;
position: relative;
}
.mejs-time-total, .mejs-time-buffering, .mejs-time-loaded, .mejs-time-current, .mejs-time-float, .mejs-time-hovered, .mejs-time-float-current, .mejs-time-float-corner, .mejs-time-marker {
cursor: pointer;
border-radius: .125rem;
height: .625rem;
display: block;
position: absolute;
}
.mejs-time-total {
background: #ffffff4d;
width: 100%;
margin: .3125rem 0 0;
}
.mejs-time-buffering {
background: -webkit-linear-gradient(135deg, #fff6 25%, #0000 25% 50%, #fff6 50% 75%, #0000 75%, #0000);
background: linear-gradient(-45deg, #fff6 25%, #0000 25% 50%, #fff6 50% 75%, #0000 75%, #0000) 0 0 / .9375rem .9375rem;
width: 100%;
-webkit-animation: 2s linear infinite buffering-stripes;
animation: 2s linear infinite buffering-stripes;
}
@-webkit-keyframes buffering-stripes {
from {
background-position: 0 0;
}
to {
background-position: 1.875rem 0;
}
}
@keyframes buffering-stripes {
from {
background-position: 0 0;
}
to {
background-position: 1.875rem 0;
}
}
.mejs-time-loaded {
background: #ffffff4d;
}
.mejs-time-current, .mejs-time-handle-content {
background: #ffffffe6;
}
.mejs-time-hovered {
z-index: 10;
background: #ffffff80;
}
.mejs-time-hovered.negative {
background: #0003;
}
.mejs-time-current, .mejs-time-buffering, .mejs-time-loaded, .mejs-time-hovered {
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
width: 100%;
-webkit-transition: all .15s ease-in;
transition: all .15s ease-in;
left: 0;
-webkit-transform: scaleX(0);
-ms-transform: scaleX(0);
transform: scaleX(0);
}
.mejs-time-buffering {
-webkit-transform: scaleX(1);
-ms-transform: scaleX(1);
transform: scaleX(1);
}
.mejs-time-hovered {
-webkit-transition: height .1s cubic-bezier(.44, 0, 1, 1);
transition: height .1s cubic-bezier(.44, 0, 1, 1);
}
.mejs-time-hovered.no-hover {
-webkit-transform: scaleX(0) !important;
-ms-transform: scaleX(0) !important;
transform: scaleX(0) !important;
}
.mejs-time-handle, .mejs-time-handle-content {
cursor: pointer;
z-index: 11;
border: .25rem solid #0000;
position: absolute;
left: 0;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
.mejs-time-handle-content {
border: .25rem solid #ffffffe6;
border-radius: 50%;
width: .625rem;
height: .625rem;
top: -.25rem;
left: -.4375rem;
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
}
.mejs-time-rail:hover .mejs-time-handle-content, .mejs-time-rail .mejs-time-handle-content:focus, .mejs-time-rail .mejs-time-handle-content:active {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.mejs-time-float {
color: #111;
text-align: center;
background: #eee;
border: 1px solid #333;
width: 2.25rem;
height: 1.0625rem;
margin-bottom: .5625rem;
display: none;
position: absolute;
bottom: 100%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.mejs-time-float-current {
text-align: center;
width: 1.875rem;
margin: .125rem;
display: block;
left: 0;
}
.mejs-time-float-corner {
border: .3125rem solid #0000;
border-top-color: #eee;
border-radius: 0;
width: 0;
height: 0;
line-height: 0;
display: block;
position: absolute;
top: 100%;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.mejs-long-video .mejs-time-float {
width: 4rem;
margin-left: -1.4375rem;
}
.mejs-long-video .mejs-time-float-current {
width: 3.75rem;
}
.mejs-broadcast {
color: #fff;
width: 100%;
height: .625rem;
position: absolute;
top: .9375rem;
}
.mejs-volume-button {
position: relative;
}
.mejs-volume-button > .mejs-volume-slider {
-webkit-backface-visibility: hidden;
z-index: 1;
background: #323232b3;
border-radius: 0;
width: 1.5625rem;
height: 7.1875rem;
margin: 0;
display: none;
position: absolute;
bottom: 100%;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.mejs-volume-button:hover {
border-radius: 0 0 .25rem .25rem;
}
.mejs-volume-total {
background: #ffffff80;
width: .125rem;
height: 6.25rem;
margin: 0;
position: absolute;
top: .5rem;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.mejs-volume-current {
background: #ffffffe6;
width: 100%;
margin: 0;
position: absolute;
left: 0;
}
.mejs-volume-handle {
cursor: ns-resize;
background: #ffffffe6;
border: 1px solid #fff;
border-radius: 1px;
width: 1rem;
height: .375rem;
position: absolute;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.mejs-horizontal-volume-slider {
vertical-align: middle;
width: 3.5rem;
height: 2.25rem;
display: block;
position: relative;
}
.mejs-horizontal-volume-total {
background: #323232cc;
border-radius: .125rem;
width: 3.125rem;
height: .5rem;
margin: 0;
padding: 0;
font-size: 1px;
position: absolute;
top: 1rem;
left: 0;
}
.mejs-horizontal-volume-current {
background: #fffc;
border-radius: .125rem;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-size: 1px;
position: absolute;
top: 0;
left: 0;
}
.mejs-horizontal-volume-handle {
display: none;
}
.mejs-mute svg, .mejs-unmute svg {
stroke: currentColor;
}
.mejs-volume-button svg {
display: none;
}
.mejs-mute .mejs-icon-mute, .mejs-unmute .mejs-icon-unmute {
display: block;
}
.mejs-captions-button, .mejs-chapters-button {
position: relative;
}
.mejs-chapters-button svg, .mejs-captions-button svg {
padding-top: .125rem;
}
.mejs-captions-button > .mejs-captions-selector, .mejs-chapters-button > .mejs-chapters-selector {
visibility: visible;
background: #323232b3;
border: 1px solid #0000;
border-radius: 0;
width: 5.375rem;
margin-right: -2.6875rem;
padding: 0;
position: absolute;
bottom: 100%;
right: 50%;
overflow: hidden;
}
.mejs-chapters-button > .mejs-chapters-selector {
width: 6.875rem;
margin-right: -3.4375rem;
}
.mejs-captions-selector-list, .mejs-chapters-selector-list {
margin: 0;
padding: 0;
overflow: hidden;
list-style-type: none !important;
}
.mejs-captions-selector-list-item, .mejs-chapters-selector-list-item {
color: #fff;
cursor: pointer;
margin: 0 0 .375rem;
padding: 0;
display: block;
overflow: hidden;
list-style-type: none !important;
}
.mejs-captions-selector-list-item:hover, .mejs-chapters-selector-list-item:hover {
background-color: #fff6 !important;
}
.mejs-captions-selector-input, .mejs-chapters-selector-input {
clear: both;
float: left;
margin: .1875rem .1875rem 0 .3125rem;
position: absolute;
left: -62.5rem;
}
.mejs-captions-selector-label, .mejs-chapters-selector-label {
cursor: pointer;
float: left;
width: 100%;
padding: .25rem .625rem 0;
font-size: .625rem;
line-height: .9375rem;
}
.mejs-captions-selector-list-item:hover .mejs-captions-selector-label, .mejs-chapters-selector-list-item:hover .mejs-chapters-selector-label {
text-decoration: underline;
}
.mejs-captions-selected, .mejs-chapters-selected {
color: #21f8f8;
font-weight: bold;
}
.mejs-captions-translations {
margin: 0 0 .3125rem;
font-size: .625rem;
}
.mejs-captions-layer {
color: #fff;
text-align: center;
font-size: 1rem;
line-height: 1.25rem;
position: absolute;
bottom: 0;
left: 0;
}
.mejs-captions-layer a {
color: #fff;
text-decoration: underline;
}
.mejs-captions-layer[lang="ar"] {
font-size: 1.25rem;
font-weight: normal;
}
.mejs-captions-position {
width: 100%;
position: absolute;
bottom: .9375rem;
left: 0;
}
.mejs-captions-position-hover {
bottom: 2.1875rem;
}
.mejs-captions-text, .mejs-captions-text * {
white-space: pre-wrap;
background: #14141480;
padding: 0;
box-shadow: .3125rem 0 #14141480, -.3125rem 0 #14141480;
}
.mejs-container.mejs-hide-cues video::-webkit-media-text-track-container {
display: none;
}
.mejs-overlay-error {
position: relative;
}
.mejs-overlay-error > img {
z-index: -1;
max-width: 100%;
position: absolute;
top: 0;
left: 0;
}
.mejs-cannotplay, .mejs-cannotplay a {
color: #fff;
font-size: .8em;
}
.mejs-cannotplay {
position: relative;
}
.mejs-cannotplay p, .mejs-cannotplay a {
width: 100%;
padding: 0 .9375rem;
display: inline-block;
}

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -0,0 +1,723 @@
@charset "UTF-8";
.mejs__offscreen {
clip: rect(1px, 1px, 1px, 1px);
-webkit-clip-path: inset(50%);
clip-path: inset(50%);
word-wrap: normal;
border: 0;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
position: absolute;
overflow: hidden;
}
.mejs__container {
box-sizing: border-box;
text-align: left;
text-indent: 0;
vertical-align: top;
background: #000;
font-family: Helvetica, Arial, serif;
position: relative;
}
.mejs__container * {
box-sizing: border-box;
}
.mejs__container video::-webkit-media-controls, .mejs__container video::-webkit-media-controls-panel, .mejs__container video::-webkit-media-controls-panel-container, .mejs__container video::-webkit-media-controls-start-playback-button {
-webkit-appearance: none;
display: none !important;
}
.mejs__fill-container, .mejs__fill-container .mejs__container {
width: 100%;
height: 100%;
}
.mejs__fill-container {
background: none;
margin: 0 auto;
position: relative;
overflow: hidden;
}
.mejs__container:focus {
outline-offset: .125rem;
outline-width: .125rem;
}
.mejs__iframe-overlay {
width: 100%;
height: 100%;
position: absolute;
}
.mejs__embed, .mejs__embed body {
background: #000;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
.mejs__fullscreen {
overflow: hidden !important;
}
.mejs__container-fullscreen {
z-index: 1000;
position: fixed;
inset: 0;
overflow: hidden;
}
.mejs__background {
position: absolute;
top: 0;
left: 0;
}
.mejs__mediaelement {
z-index: 0;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
.mejs__poster {
z-index: 1;
background-position: 50%;
background-repeat: no-repeat;
background-size: cover;
position: absolute;
top: 0;
left: 0;
}
:root .mejs__poster-img {
display: none;
}
.mejs__poster-img {
border: 0;
padding: 0;
}
.mejs__overlay {
justify-content: center;
align-items: center;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
position: absolute;
top: 0;
left: 0;
}
.mejs__layer {
z-index: 1;
}
.mejs__overlay-play {
cursor: pointer;
}
.mejs__overlay-button {
background: none;
border: 0;
}
.mejs__overlay:hover .mejs__overlay-button svg {
opacity: 1;
}
.mejs__overlay-button svg {
opacity: .75;
}
.mejs__overlay-button:focus svg {
opacity: 1;
}
.mejs__overlay-button, .mejs__overlay-button svg, .mejs__overlay-loading, .mejs__overlay-loading svg {
width: 5rem;
height: 5rem;
}
.mejs__overlay-loading-bg-img {
z-index: 1;
width: 5rem;
height: 5rem;
-webkit-animation: 1s linear infinite mejs__loading-spinner;
animation: 1s linear infinite mejs__loading-spinner;
display: block;
}
@-webkit-keyframes mejs__loading-spinner {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes mejs__loading-spinner {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.mejs__controls {
z-index: 3;
width: 100%;
height: 2.5rem;
margin: 0;
padding: 0 .625rem;
list-style-type: none;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
position: absolute;
bottom: 0;
left: 0;
}
.mejs__controls:not([style*="display: none"]) {
background: -webkit-linear-gradient(#0000, #00000059);
background: linear-gradient(#0000, #00000059);
}
.mejs__button, .mejs__time, .mejs__time-rail {
width: 2rem;
height: 2.5rem;
margin: 0;
font-size: .625rem;
line-height: .625rem;
}
.mejs__button > button {
color: #fff;
cursor: pointer;
background-color: #0000;
border: 0;
width: 1.125rem;
height: 1.125rem;
margin: .625rem .375rem;
padding: 0;
font-size: 0;
line-height: 0;
text-decoration: none;
display: block;
position: absolute;
overflow: hidden;
}
.mejs__button svg {
fill: currentColor;
width: 1.125rem;
height: 1.125rem;
}
.mejs__button > button:focus {
outline: .125rem dotted #fff;
}
.mejs__container-keyboard-inactive a, .mejs__container-keyboard-inactive a:focus, .mejs__container-keyboard-inactive button, .mejs__container-keyboard-inactive button:focus, .mejs__container-keyboard-inactive [role="slider"], .mejs__container-keyboard-inactive [role="slider"]:focus {
outline: 0;
}
.mejs__playpause-button svg {
display: none;
}
.mejs__play svg.mejs__icon-play, .mejs__pause svg.mejs__icon-pause, .mejs__replay svg.mejs__icon-replay {
display: block;
}
.mejs__fullscreen-button svg.mejs__icon-unfullscreen {
display: none;
}
.mejs__fullscreen svg.mejs__icon-fullscreen {
display: block;
}
.mejs__fullscreen svg.mejs__icon-unfullscreen {
display: none;
}
.mejs__unfullscreen svg.mejs__icon-unfullscreen {
display: block;
}
.mejs__unfullscreen svg.mejs__icon-fullscreen {
display: none;
}
.mejs__time {
box-sizing: content-box;
color: #fff;
text-align: center;
width: auto;
height: 1.5rem;
padding: 1rem .375rem 0;
font-size: .6875rem;
font-weight: bold;
overflow: hidden;
}
.mejs__time-rail {
direction: ltr;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
-webkit-flex-grow: 1;
flex-grow: 1;
height: 2.5rem;
margin: 0 .625rem;
padding-top: .625rem;
position: relative;
}
.mejs__time-total, .mejs__time-buffering, .mejs__time-loaded, .mejs__time-current, .mejs__time-float, .mejs__time-hovered, .mejs__time-float-current, .mejs__time-float-corner, .mejs__time-marker {
cursor: pointer;
border-radius: .125rem;
height: .625rem;
display: block;
position: absolute;
}
.mejs__time-total {
background: #ffffff4d;
width: 100%;
margin: .3125rem 0 0;
}
.mejs__time-buffering {
background: -webkit-linear-gradient(135deg, #fff6 25%, #0000 25% 50%, #fff6 50% 75%, #0000 75%, #0000);
background: linear-gradient(-45deg, #fff6 25%, #0000 25% 50%, #fff6 50% 75%, #0000 75%, #0000) 0 0 / .9375rem .9375rem;
width: 100%;
-webkit-animation: 2s linear infinite buffering-stripes;
animation: 2s linear infinite buffering-stripes;
}
@-webkit-keyframes buffering-stripes {
from {
background-position: 0 0;
}
to {
background-position: 1.875rem 0;
}
}
@keyframes buffering-stripes {
from {
background-position: 0 0;
}
to {
background-position: 1.875rem 0;
}
}
.mejs__time-loaded {
background: #ffffff4d;
}
.mejs__time-current, .mejs__time-handle-content {
background: #ffffffe6;
}
.mejs__time-hovered {
z-index: 10;
background: #ffffff80;
}
.mejs__time-hovered.negative {
background: #0003;
}
.mejs__time-current, .mejs__time-buffering, .mejs__time-loaded, .mejs__time-hovered {
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
width: 100%;
-webkit-transition: all .15s ease-in;
transition: all .15s ease-in;
left: 0;
-webkit-transform: scaleX(0);
-ms-transform: scaleX(0);
transform: scaleX(0);
}
.mejs__time-buffering {
-webkit-transform: scaleX(1);
-ms-transform: scaleX(1);
transform: scaleX(1);
}
.mejs__time-hovered {
-webkit-transition: height .1s cubic-bezier(.44, 0, 1, 1);
transition: height .1s cubic-bezier(.44, 0, 1, 1);
}
.mejs__time-hovered.no-hover {
-webkit-transform: scaleX(0) !important;
-ms-transform: scaleX(0) !important;
transform: scaleX(0) !important;
}
.mejs__time-handle, .mejs__time-handle-content {
cursor: pointer;
z-index: 11;
border: .25rem solid #0000;
position: absolute;
left: 0;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
.mejs__time-handle-content {
border: .25rem solid #ffffffe6;
border-radius: 50%;
width: .625rem;
height: .625rem;
top: -.25rem;
left: -.4375rem;
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
}
.mejs__time-rail:hover .mejs__time-handle-content, .mejs__time-rail .mejs__time-handle-content:focus, .mejs__time-rail .mejs__time-handle-content:active {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.mejs__time-float {
color: #111;
text-align: center;
background: #eee;
border: 1px solid #333;
width: 2.25rem;
height: 1.0625rem;
margin-bottom: .5625rem;
display: none;
position: absolute;
bottom: 100%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.mejs__time-float-current {
text-align: center;
width: 1.875rem;
margin: .125rem;
display: block;
left: 0;
}
.mejs__time-float-corner {
border: .3125rem solid #0000;
border-top-color: #eee;
border-radius: 0;
width: 0;
height: 0;
line-height: 0;
display: block;
position: absolute;
top: 100%;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.mejs__long-video .mejs__time-float {
width: 4rem;
margin-left: -1.4375rem;
}
.mejs__long-video .mejs__time-float-current {
width: 3.75rem;
}
.mejs__broadcast {
color: #fff;
width: 100%;
height: .625rem;
position: absolute;
top: .9375rem;
}
.mejs__volume-button {
position: relative;
}
.mejs__volume-button > .mejs__volume-slider {
-webkit-backface-visibility: hidden;
z-index: 1;
background: #323232b3;
border-radius: 0;
width: 1.5625rem;
height: 7.1875rem;
margin: 0;
display: none;
position: absolute;
bottom: 100%;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.mejs__volume-button:hover {
border-radius: 0 0 .25rem .25rem;
}
.mejs__volume-total {
background: #ffffff80;
border: .06rem solid #fff;
width: .125rem;
height: 6.25rem;
margin: 0;
position: absolute;
top: .5rem;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.mejs__volume-current {
background: #ffffffe6;
width: 100%;
margin: 0;
position: absolute;
left: 0;
}
.mejs__volume-handle {
cursor: ns-resize;
background: #ffffffe6;
border: 1px solid #fff;
border-radius: 1px;
width: 1rem;
height: .375rem;
position: absolute;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.mejs__horizontal-volume-slider {
vertical-align: middle;
width: 3.5rem;
height: 2.25rem;
display: block;
position: relative;
}
.mejs__horizontal-volume-total {
background: #323232cc;
border: .06rem solid #fff;
border-radius: .125rem;
width: 3.125rem;
height: .5rem;
margin: 0;
padding: 0;
font-size: 1px;
position: absolute;
top: 1rem;
left: 0;
}
.mejs__horizontal-volume-current {
background: #fffc;
border-right: .06rem solid #fff;
border-radius: .125rem;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-size: 1px;
position: absolute;
top: 0;
left: 0;
}
.mejs__horizontal-volume-handle {
display: none;
}
.mejs__mute svg, .mejs__unmute svg {
stroke: currentColor;
}
.mejs__volume-button svg {
display: none;
}
.mejs__mute .mejs__icon-mute, .mejs__unmute .mejs__icon-unmute {
display: block;
}
.mejs__captions-button, .mejs__chapters-button {
position: relative;
}
.mejs__chapters-button svg, .mejs__captions-button svg {
padding-top: .125rem;
}
.mejs__captions-button > .mejs__captions-selector, .mejs__chapters-button > .mejs__chapters-selector {
visibility: visible;
background: #323232b3;
border: 1px solid #0000;
border-radius: 0;
width: 5.375rem;
margin-right: -2.6875rem;
padding: 0;
position: absolute;
bottom: 100%;
right: 50%;
overflow: hidden;
}
.mejs__chapters-button > .mejs__chapters-selector {
width: 6.875rem;
margin-right: -3.4375rem;
}
.mejs__captions-selector-list, .mejs__chapters-selector-list {
margin: 0;
padding: 0;
overflow: hidden;
list-style-type: none !important;
}
.mejs__captions-selector-list-item, .mejs__chapters-selector-list-item {
color: #fff;
cursor: pointer;
margin: 0 0 .375rem;
padding: 0;
display: block;
overflow: hidden;
list-style-type: none !important;
}
.mejs__captions-selector-list-item:hover, .mejs__chapters-selector-list-item:hover {
background-color: #fff6 !important;
}
.mejs__captions-selector-input, .mejs__chapters-selector-input {
clear: both;
float: left;
margin: .1875rem .1875rem 0 .3125rem;
position: absolute;
left: -62.5rem;
}
.mejs__captions-selector-label, .mejs__chapters-selector-label {
cursor: pointer;
float: left;
width: 100%;
padding: .25rem .625rem 0;
font-size: .625rem;
line-height: .9375rem;
}
.mejs__captions-selector-list-item:hover .mejs__captions-selector-label, .mejs__chapters-selector-list-item:hover .mejs__chapters-selector-label {
text-decoration: underline;
}
.mejs__captions-selected, .mejs__chapters-selected {
color: #21f8f8;
font-weight: bold;
}
.mejs__captions-translations {
margin: 0 0 .3125rem;
font-size: .625rem;
}
.mejs__captions-layer {
color: #fff;
text-align: center;
font-size: 1rem;
line-height: 1.25rem;
position: absolute;
bottom: 0;
left: 0;
}
.mejs__captions-layer a {
color: #fff;
text-decoration: underline;
}
.mejs__captions-layer[lang="ar"] {
font-size: 1.25rem;
font-weight: normal;
}
.mejs__captions-position {
width: 100%;
position: absolute;
bottom: .9375rem;
left: 0;
}
.mejs__captions-position-hover {
bottom: 2.1875rem;
}
.mejs__captions-text, .mejs__captions-text * {
white-space: pre-wrap;
background: #14141480;
padding: 0;
box-shadow: .3125rem 0 #14141480, -.3125rem 0 #14141480;
}
.mejs__container.mejs__hide-cues video::-webkit-media-text-track-container {
display: none;
}
.mejs__overlay-error {
position: relative;
}
.mejs__overlay-error > img {
z-index: -1;
max-width: 100%;
position: absolute;
top: 0;
left: 0;
}
.mejs__cannotplay, .mejs__cannotplay a {
color: #fff;
font-size: .8em;
}
.mejs__cannotplay {
position: relative;
}
.mejs__cannotplay p, .mejs__cannotplay a {
width: 100%;
padding: 0 .9375rem;
display: inline-block;
}

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -0,0 +1,68 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="icon-captions" viewBox="0 0 18 14" xmlns="http://www.w3.org/2000/svg">
<g fill="#fff">
<path d="M-.67-4.08h14a2,2,0,0,1,2,2v10a2,2,0,0,1-2,2h-14a2,2,0,0,1-2-2v-10A2,2,0,0,1-.67-4.08Z" transform="translate(2.67 4.08)"/>
</g>
<g fill="#000">
<path d="M2.88,6.67a2.81,2.81,0,0,1-2.1-1A3.91,3.91,0,0,1,.88.87c.5-.6,2-1.7,4.6.2l-.6.8c-1.4-1-2.6-1.1-3.3-.3a3,3,0,0,0-.1,3.5c.7.9,1.9.8,3.4-.1l.5.9a5.28,5.28,0,0,1-2.5.8Zm7.5,0a2.81,2.81,0,0,1-2.1-1,3.91,3.91,0,0,1,.1-4.8c.5-.6,2-1.7,4.6.2l-.5.8c-1.4-1-2.6-1.1-3.3-.3a3,3,0,0,0-.1,3.5c.7.9,1.9.8,3.4-.1l.5.9a6.07,6.07,0,0,1-2.6.8Z" transform="translate(2.67 4.08)"/>
</g>
</symbol>
<symbol id="icon-chapters" viewBox="0 0 16.6 13" xmlns="http://www.w3.org/2000/svg"><path d="M1.5,0A1.54,1.54,0,0,1,3,1.5,1.54,1.54,0,0,1,1.5,3,1.54,1.54,0,0,1,0,1.5,1.47,1.47,0,0,1,1.5,0ZM6.6,0h8.5a1.47,1.47,0,0,1,1.5,1.5A1.54,1.54,0,0,1,15.1,3H6.6A1.47,1.47,0,0,1,5.1,1.5,1.37,1.37,0,0,1,6.6,0ZM1.5,5A1.54,1.54,0,0,1,3,6.5,1.54,1.54,0,0,1,1.5,8,1.54,1.54,0,0,1,0,6.5,1.47,1.47,0,0,1,1.5,5ZM6.6,5h8.5a1.47,1.47,0,0,1,1.5,1.5A1.54,1.54,0,0,1,15.1,8H6.6A1.47,1.47,0,0,1,5.1,6.5,1.37,1.37,0,0,1,6.6,5ZM1.5,10a1.5,1.5,0,0,1,0,3A1.54,1.54,0,0,1,0,11.5,1.47,1.47,0,0,1,1.5,10Zm5.1,0h8.5a1.47,1.47,0,0,1,1.5,1.5A1.54,1.54,0,0,1,15.1,13H6.6a1.47,1.47,0,0,1-1.5-1.5A1.37,1.37,0,0,1,6.6,10Z"/></symbol>
<symbol id="icon-fullscreen" viewBox="0 0 17.8 17.8" xmlns="http://www.w3.org/2000/svg"><path d="M0,1A.94.94,0,0,1,1,0H6.4c.6,0,.7.3.3.7l-6,6C.3,7.1,0,7,0,6.4ZM0,16.8a.94.94,0,0,0,1,1H6.4c.6,0,.7-.3.3-.7l-6-6c-.4-.4-.7-.3-.7.3ZM17.8,1a.94.94,0,0,0-1-1H11.4c-.6,0-.7.3-.3.7l6,6c.4.4.7.3.7-.3Zm0,15.8a.94.94,0,0,1-1,1H11.4c-.6,0-.7-.3-.3-.7l6-6c.4-.4.7-.3.7.3Z"/></symbol>
<symbol id="icon-unfullscreen" viewBox="0 0 17.8 17.8" xmlns="http://www.w3.org/2000/svg"><path d="M11.74,4.64a.94.94,0,0,0,1,1h4.1c.6,0,.7-.3.3-.7L12.44.24c-.4-.4-.7-.3-.7.3Zm-7.1,1a.94.94,0,0,0,1-1V.54c0-.6-.3-.7-.7-.3L.24,4.94c-.4.4-.3.7.3.7Zm1,7.1a.94.94,0,0,0-1-1H.54c-.6,0-.7.3-.3.7l4.7,4.7c.4.4.7.3.7-.3Zm7.1-1a.94.94,0,0,0-1,1v4.1c0,.5.3.7.7.3l4.7-4.7c.4-.4.3-.7-.3-.7Z"/></symbol>
<symbol id="icon-mute" viewBox="0 0 17.55 17.03" xmlns="http://www.w3.org/2000/svg">
<g stroke="none">
<path d="M6.21,4.36a3,3,0,0,1-1.8.6H1.21a.94.94,0,0,0-1,1v5.7a.94.94,0,0,0,1,1h4.2c.3.2.5.4.8.6l3.5,2.6a.47.47,0,0,0,.8-.4V2.06a.47.47,0,0,0-.8-.4Z"/>
</g>
<g fill="none" stroke-linecap="round" stroke-width="1.5px">
<path d="M13.11,1.18S17,.38,17,8.88s-3.9,7.8-3.9,7.8"/>
<path d="M11.81,5.08s2.6-.4,2.6,3.8-2.6,3.9-2.6,3.9"/>
</g>
</symbol>
<symbol id="icon-unmute" viewBox="0 0 18.2 17" xmlns="http://www.w3.org/2000/svg">
<g stroke="none">
<path d="M6.21,4.36a3,3,0,0,1-1.8.6H1.21a.94.94,0,0,0-1,1v5.7a.94.94,0,0,0,1,1h4.2c.3.2.5.4.8.6l3.5,2.6a.47.47,0,0,0,.8-.4V2.06a.47.47,0,0,0-.8-.4Z"/>
</g>
<g fill="none" stroke-linecap="round" stroke-width="2px">
<path d="M12,5.55l5.4,5.4M12,11l5.4-5.4"/>
</g>
</symbol>
<symbol id="icon-play" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg"><path d="M16.5 8.5c.3.1.4.5.2.8-.1.1-.1.2-.2.2l-11.4 7c-.5.3-.8.1-.8-.5V2c0-.5.4-.8.8-.5l11.4 7z"/></symbol>
<symbol id="icon-pause" viewBox="0 0 14 16" xmlns="http://www.w3.org/2000/svg"><path d="M1,0H3.2a.94.94,0,0,1,1,1V15a.94.94,0,0,1-1,1H1a.94.94,0,0,1-1-1V1A1,1,0,0,1,1,0Zm9.8,0H13a.94.94,0,0,1,1,1V15a.94.94,0,0,1-1,1H10.8a.94.94,0,0,1-1-1V1A1,1,0,0,1,10.8,0Z"/></symbol>
<symbol id="icon-replay" viewBox="0 0 17.52 15.97" xmlns="http://www.w3.org/2000/svg"><path d="M16.7,7.27a.81.81,0,0,1-.9.7c-.1,0-.2,0-.2-.1l-4.9-1.8c-.5-.2-.6-.6-.1-.8l6.2-3.6c.5-.3.8-.1.7.5l-.8,5.1Z"/><path d="M8.1,13.77a5.92,5.92,0,0,1-2.9-.7A5.77,5.77,0,0,1,2,7.87a6.21,6.21,0,0,1,6.3-6A6.15,6.15,0,0,1,13.9,6l.1-.1L16.1,7A8.1,8.1,0,0,0,7,.07,8.24,8.24,0,0,0,0,8a8.06,8.06,0,0,0,4.3,7,10.21,10.21,0,0,0,3.8,1,8.24,8.24,0,0,0,6.6-3.3l-1.8-.9a7,7,0,0,1-4.8,2Z"/></symbol>
<symbol id="icon-overlay-play" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg">
<g fill="#333" stroke="#fff" stroke-width="5px">
<path d="M2.5,40A37.5,37.5,0,1,1,40,77.5,37.51,37.51,0,0,1,2.5,40Z"/>
</g>
<g fill="#fff">
<path d="M60.3,38a1,1,0,0,1,.6,1.4.9.9,0,0,1-.6.6L30,57.5c-1,.6-1.7.1-1.7-1v-35c0-1.1.8-1.5,1.7-1Z"/>
</g>
</symbol>
<symbol id="icon-loading-spinner" viewBox="0 0 75.8 77.9" xmlns="http://www.w3.org/2000/svg">
<g fill="#fff">
<circle cx="38.8" cy="8.1" r="8.1"/>
<g opacity="0.4">
<circle cx="70.8" cy="40" r="5"/>
</g>
<g opacity="0.6">
<circle cx="38.8" cy="71.9" r="6"/>
</g>
<g opacity="0.8">
<circle cx="7" cy="40" r="7"/>
</g>
<g opacity="0.9">
<circle cx="15.1" cy="17.3" r="7.5"/>
</g>
<g opacity="0.3">
<circle cx="63.2" cy="17.1" r="4.5"/>
</g>
<g opacity="0.5">
<circle cx="62.7" cy="63.8" r="5.5"/>
</g>
<g opacity="0.7">
<circle cx="15.1" cy="63.8" r="6.5"/>
</g>
</g>
</symbol>
</svg>

After

Width:  |  Height:  |  Size: 5.4 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

Binary file not shown.