components.css 420 B

123456789101112131415161718192021222324252627282930313233
  1. html {
  2. box-sizing: border-box;
  3. }
  4. *, *::after, *::before {
  5. box-sizing: inherit;
  6. }
  7. .breadcrumb li {
  8. list-style-type: none;
  9. display: inline-block;
  10. }
  11. #navigation li {
  12. list-style-type: none;
  13. display: inline-block;
  14. }
  15. .site-name {
  16. font-size: 2.2em;
  17. line-height: 1.3em;
  18. font-weight: 300;
  19. padding: 0 0 0.5em;
  20. margin: 0;
  21. }
  22. .pager__item {
  23. display: inline;
  24. }
  25. .pager__item a {
  26. display: inline-block;
  27. }