item.scss 813 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. body{
  2. & >.item{
  3. #body-wrapper.blog-listing{
  4. border-top: 1px solid black;
  5. padding-top: 20px;
  6. .header-item{
  7. position: relative;
  8. .title{
  9. display: inline-flex;
  10. align-items: baseline;
  11. h2{
  12. margin-right: 5px;
  13. }
  14. time{
  15. margin-right: 5px;
  16. }
  17. span{
  18. margin-right: 5px;
  19. }
  20. }
  21. .content{
  22. width: calc((100% / 3) * 2);
  23. .txt{
  24. column-count: 2;
  25. margin: 20px 0;
  26. }
  27. }
  28. .prev-next{
  29. position: absolute;
  30. width: calc(100% / 3);
  31. top: 0;
  32. right: 0;
  33. }
  34. .top{
  35. text-align: center;
  36. margin-bottom: 20px;
  37. }
  38. }
  39. }
  40. }
  41. }