1234567891011121314151617181920212223242526272829303132333435363738 |
- :root {
- --plyr-color-main: #1ff0c9;
- }
- .video-container {
- width: 100%;
- border: 1px solid var(--next-border-color-light);
- // --plyr-color-main: #01c1b5;
- video {
- width: 100%;
- // object-fit: cover;
- }
- :deep(.plyr__poster) {
- background-size: cover;
- }
- }
- :global {
- .plyr:fullscreen video {
- height: 100% !important;
- }
- .plyr__poster {
- background-size: cover;
- }
- .plyr__control--overlaid {
- background-color: rgba(0, 0, 0, 0.42) !important;
- cursor: pointer;
- }
- }
- .audios {
- :global {
- .plyr__controls {
- background-color: #333 !important;
- height: 68px;
- line-height: 68px;
- color: #fff !important;
- }
- }
- }
|