_navigation.scss 804 B

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