audiofield.css 384 B

123456789101112131415161718192021
  1. /*
  2. * some players do not expect the box-sizing setting for Drupal 8, so we reset it here
  3. */
  4. .audiofield {
  5. -webkit-box-sizing: content-box;
  6. box-sizing: content-box;
  7. }
  8. /*
  9. * be certain all floated content is visible
  10. */
  11. .audiofield:after {
  12. content: "";
  13. clear: both;
  14. display: block;
  15. }
  16. /*
  17. * properly align jPlayer circle player
  18. */
  19. .cp-circle-frame {
  20. text-align: center;
  21. }