_section.scss 853 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #start{
  2. margin-top: 35px;
  3. .item{
  4. display: flex;
  5. .card{
  6. position: relative;
  7. width: calc(100% / 3);
  8. .card-image{
  9. background-color: rgb(0, 255, 0);
  10. img{
  11. transition: all .6s;
  12. mix-blend-mode: multiply;
  13. // filter: contrast(10) grayscale(1);
  14. opacity: .95;
  15. }
  16. }
  17. .card-title{
  18. position: absolute;
  19. top: 50%;
  20. left: 50%;
  21. transform: translateX(-50%);
  22. }
  23. }
  24. }
  25. #items{
  26. .content-item{
  27. .e-content{
  28. display: flex;
  29. }
  30. .media{
  31. width: calc((100% / 3) + (100% / 3));
  32. }
  33. .txt{
  34. position: fixed;
  35. right: 0;
  36. height: 100%;
  37. width: calc(100% / 3);
  38. .taxonomy{
  39. position:fixed;
  40. bottom: 0;
  41. }
  42. }
  43. }
  44. }
  45. }