recent-posts.css 530 B

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