Skip to content

Instantly share code, notes, and snippets.

@ericakfranz
Created November 30, 2015 21:54
Show Gist options
  • Save ericakfranz/518e2e39243c411a8ba9 to your computer and use it in GitHub Desktop.
Save ericakfranz/518e2e39243c411a8ba9 to your computer and use it in GitHub Desktop.
Modify the default play icon for Soliloquy Video Slides
.soliloquy-container .soliloquy-video-icon {
background-image: url('http://www.example.com/image.png') !important;
background-size: 50% 50% !important;
}
/* Retina version */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2 / 1),
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi),
only screen and (min-resolution: 2dppx) {
.soliloquy-container .soliloquy-video-icon {
background-image: url('http://www.example.com/[email protected]') !important;
background-size: 50px 50px !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment