post-nav.styl 595 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .post-nav {
  2. border-top: 1px solid $gainsboro;
  3. display: flex;
  4. justify-content: space-between;
  5. margin-top: 15px;
  6. padding: 10px 5px 0;
  7. }
  8. .post-nav-item {
  9. flex: 1;
  10. a {
  11. border-bottom: none;
  12. display: block;
  13. font-size: $font-size-small;
  14. line-height: 1.6;
  15. position: relative;
  16. &:active {
  17. top: 2px;
  18. }
  19. }
  20. .fa {
  21. font-size: $font-size-smallest;
  22. }
  23. &:first-child {
  24. margin-right: 15px;
  25. .fa {
  26. margin-right: 5px;
  27. }
  28. }
  29. &:last-child {
  30. margin-left: 15px;
  31. text-align: right;
  32. .fa {
  33. margin-left: 5px;
  34. }
  35. }
  36. }