tocify.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * jquery.tocify.css 1.9.0
  3. * Author: @gregfranko
  4. */
  5. /* The Table of Contents container element */
  6. .tocify {
  7. margin-top: 20px;
  8. }
  9. /* The Table of Contents is composed of multiple nested unordered lists. These styles remove the default styling of an unordered list because it is ugly. */
  10. .tocify ul, .tocify li {
  11. list-style: none;
  12. margin: 0;
  13. padding: 0;
  14. border: none;
  15. line-height: 30px;
  16. }
  17. /* Top level header elements */
  18. .tocify-header {
  19. text-indent: 10px;
  20. }
  21. .tocify-item {
  22. margin-bottom: 5px !important;
  23. }
  24. /* Top level subheader elements. These are the first nested items underneath a header element. */
  25. .tocify-subheader {
  26. text-indent: 20px;
  27. display: none;
  28. }
  29. /* Makes the font smaller for all subheader elements. */
  30. .tocify-subheader li {
  31. font-size: 12px;
  32. }
  33. /* Further indents second level subheader elements. */
  34. .tocify-subheader .tocify-subheader {
  35. text-indent: 30px;
  36. }
  37. /* Further indents third level subheader elements. You can continue this pattern if you have more nested elements. */
  38. .tocify-subheader .tocify-subheader .tocify-subheader {
  39. text-indent: 40px;
  40. }
  41. /* Twitter Bootstrap Override Style */
  42. .nav-list > li > a, .nav-list .nav-header {
  43. margin: 0px;
  44. }
  45. /* Twitter Bootstrap Override Style */
  46. .nav-list > li > a {
  47. padding: 5px;
  48. }