page-title.css 559 B

12345678910111213141516171819202122232425
  1. /**
  2. * @file
  3. * This file is used to style the page title block.
  4. *
  5. * Note: This only styles the page title block itself. We do not use this block
  6. * node pages (the titles are printed in the node.html.twig template), so
  7. * styling for that will be in other files such as full.css.
  8. */
  9. .is-front .block-page-title-block {
  10. margin: 1rem 0;
  11. }
  12. .block-page-title-block {
  13. margin: 1rem 0 3rem;
  14. padding: 0 1rem;
  15. text-align: center;
  16. }
  17. /* Large */
  18. @media screen and (min-width: 77rem) { /* 1200px + 2rem */
  19. .block-page-title-block {
  20. padding: 0;
  21. }
  22. }