_navigation.scss 874 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. @import "../components/navigation-top";
  2. .comment-navigation,
  3. .posts-navigation,
  4. .post-navigation {
  5. border-top: 3px solid $color__border-button;
  6. border-bottom: 1px solid $color__border-button;
  7. padding: .8em 0;
  8. @include font-size(1.125);
  9. font-style: italic;
  10. .site-main & {
  11. margin: 0 0 1.6em;
  12. overflow: hidden;
  13. }
  14. .nav-previous {
  15. border-bottom: 1px solid $color__border-button;
  16. margin-bottom: .8em;
  17. padding-bottom: .8em;
  18. width: 100%;
  19. }
  20. .nav-next {
  21. text-align: right;
  22. width: 100%;
  23. }
  24. a,
  25. a:visited {
  26. color: $color__link-hover;
  27. text-decoration: none;
  28. &:hover {
  29. color: $color__link;
  30. }
  31. }
  32. }
  33. .post-navigation {
  34. .title {
  35. display: block;
  36. clear: both;
  37. color: $color__link;
  38. font-style: normal;
  39. font-family: $font__headings;
  40. text-transform: uppercase;
  41. letter-spacing: 1px;
  42. font-weight: bold;
  43. @include font-size(.825);
  44. }
  45. }