No Description

main.css 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. }
  40. .modal-content {
  41. background-color: rgb(75, 75, 75) !important;
  42. }
  43. .modal button.btn.btn-secondary {
  44. background-color: rgb(59, 59, 59) !important;
  45. }
  46. .modal button.close {
  47. color: rgb(255, 0, 0) !important;
  48. }