recent-posts.css 471 B

1234567891011121314151617181920212223
  1. .recent-posts .container{
  2. padding-top: 1rem;
  3. }
  4. .recent-posts .card .card-footer span {
  5. font-size: 10pt;
  6. color: #6c757d !important;
  7. padding-top: 5px;
  8. }
  9. .recent-posts .card .card-footer {
  10. background: #fff;
  11. }
  12. .post-summery {
  13. overflow: hidden;
  14. text-overflow: ellipsis;
  15. display: -webkit-box;
  16. /* line-height: 24px; fallback */
  17. max-height: 144px; /* fallback */
  18. -webkit-line-clamp: 5; /* number of lines to show */
  19. -webkit-box-orient: vertical;
  20. }