You've already forked tribes-plugin-sender
forked from tribes/tribes-plugin-template
ca86a31b25
Expose plugin API routes for playback metadata, HLS file serving, and player events. Add a typed Video.js v10 HTML player bootstrap and host-backed API tests.
27 lines
527 B
CSS
27 lines
527 B
CSS
/*
|
|
* Plugin CSS entry point.
|
|
*
|
|
* Served at /plugins-assets/sender/sender.css
|
|
* and included in the page layout if declared in manifest.json assets.global_css.
|
|
*
|
|
* Prefix all selectors with your plugin name to avoid collisions
|
|
* with host or other plugin styles.
|
|
*/
|
|
|
|
.sender {
|
|
--sender-accent: #ff6b35;
|
|
}
|
|
|
|
.sender-player {
|
|
max-width: 64rem;
|
|
}
|
|
|
|
.sender-video {
|
|
aspect-ratio: 16 / 9;
|
|
width: 100%;
|
|
min-height: 18rem;
|
|
border-radius: 1.5rem;
|
|
background: #060606;
|
|
box-shadow: 0 1.5rem 4rem rgb(0 0 0 / 18%);
|
|
}
|