accordion.css 489 B

1234567891011121314151617181920212223
  1. /*!
  2. * jQuery UI Accordion 1.12.1
  3. * http://jqueryui.com
  4. *
  5. * Copyright jQuery Foundation and other contributors
  6. * Released under the MIT license.
  7. * http://jquery.org/license
  8. *
  9. * http://api.jqueryui.com/accordion/#theming
  10. */
  11. .ui-accordion .ui-accordion-header {
  12. display: block;
  13. cursor: pointer;
  14. position: relative;
  15. margin: 2px 0 0 0;
  16. padding: .5em .5em .5em .7em;
  17. font-size: 100%;
  18. }
  19. .ui-accordion .ui-accordion-content {
  20. padding: 1em 2.2em;
  21. border-top: 0;
  22. overflow: auto;
  23. }