Brak opisu

main.css 812B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. a img{
  2. align-items: center;
  3. position: relative;
  4. width: 100%;
  5. padding: 10px;
  6. padding-left: 10px;
  7. margin-top: 20px;
  8. overflow: hidden;
  9. opacity: 0;
  10. animation-name: fadeIn;
  11. animation-delay: 0.6s;
  12. animation-duration: 0.8s;
  13. animation-fill-mode: forwards;
  14. text-decoration: none;
  15. color: white;
  16. }
  17. .article-content {
  18. margin-top: 10px;
  19. margin-bottom: 10px;
  20. padding: 5px;
  21. border: 1px solid #777;
  22. max-height: 300px;
  23. overflow: hidden;
  24. text-overflow: ellipsis;
  25. content: "";
  26. position: relative;
  27. }
  28. button.article-content {
  29. background: none;
  30. }
  31. .article-content:before {
  32. content: '';
  33. width: 100%;
  34. height: 100%;
  35. position: absolute;
  36. left: 0;
  37. top: 0;
  38. background: linear-gradient(transparent 150px, white);
  39. }