_post.scss 705 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. article.post {
  2. p {
  3. margin-bottom: 1.5rem;
  4. font-size: 1.25rem;
  5. line-height: 2.25rem;
  6. }
  7. h3 {
  8. margin: 1rem 0;
  9. }
  10. }
  11. .post-pager-link {
  12. width: calc(50% - 1rem);
  13. overflow: hidden;
  14. &:hover {
  15. background-color: $gray-100 !important;
  16. }
  17. &.next {
  18. text-align: right;
  19. }
  20. &.prev {
  21. text-align: left;
  22. }
  23. .indicator {
  24. font-size: 0.7rem;
  25. font-weight: 800;
  26. color: $gray-400;
  27. }
  28. }
  29. .latest-posts {
  30. .latest-posts-title {
  31. font-size: 0.9rem;
  32. color: $gray-700;
  33. }
  34. .latest-posts-date {
  35. font-size: 0.75rem;
  36. color: $gray-500;
  37. }
  38. .btn-all {
  39. font-weight: 700;
  40. text-transform: uppercase;
  41. padding: 0.75rem;
  42. font-size: 0.7rem;
  43. }
  44. }