Skip to content

CSS customization

Bitmovin UI renders playback controls and overlays as DOM elements with predefined CSS class names (for example, .bmpui-seekbar and .bmpui-ui-uicontainer).

Using CSS overrides lets you:

  • Customize colors, fonts, and sizes
  • Align playback controls with your brand
  • Improve accessibility and responsive behavior
  • Change visual behavior at runtime

Example: larger seekbar and branded colors

Section titled “Example: larger seekbar and branded colors”
/* Big seekbar font size */
.bmpui-seekbar.bigseek > * {
font-size: 3em;
}
/* Seekbar backdrop colors */
.bmpui-seekbar-backdrop.green {
background-color: #034728 !important;
}

This makes seekbar elements larger and changes the seekbar backdrop color.

.bmpui-ui-uicontainer {
font-family: "Roboto";
font-size: 16px;
}

This sets a consistent font baseline across UI elements.

You can also update label and button text styling to signal UI states such as on/off transitions.

© 2025–2026 MediaKind. All rights reserved.