recent-posts.css 550 B

12345678910111213141516171819202122232425262728
  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. margin-top: auto;
  12. }
  13. .recent-posts .post-card-link{
  14. text-decoration: none;
  15. }
  16. .post-summery {
  17. overflow: hidden;
  18. text-overflow: ellipsis;
  19. display: -webkit-box;
  20. /* line-height: 24px; fallback */
  21. max-height: 144px; /* fallback */
  22. -webkit-line-clamp: 5; /* number of lines to show */
  23. -webkit-box-orient: vertical;
  24. }