book.theme.css

Styling for the book module.

File

drupal/core/modules/book/book.theme.css
View source
  1. /**
  2. * @file
  3. * Styling for the book module.
  4. */
  5. /**
  6. * Book navigation.
  7. */
  8. .book-navigation .menu {
  9. padding-bottom: 0;
  10. padding-top: 1em;
  11. }
  12. .book-navigation .book-pager {
  13. margin: 0;
  14. overflow: auto;
  15. padding: 0.5em 0;
  16. }
  17. .book-pager li {
  18. display: inline-block;
  19. list-style-type: none;
  20. vertical-align: top;
  21. }
  22. .book-pager .previous {
  23. text-align: left; /* LTR */
  24. width: 45%;
  25. }
  26. .book-pager .up {
  27. text-align: center;
  28. width: 8%;
  29. }
  30. .book-pager .next {
  31. float: right; /* LTR */
  32. text-align: right; /* LTR */
  33. width: 45%;
  34. }