_list.scss 574 B

123456789101112131415161718192021222324252627282930313233343536
  1. .posts-group {
  2. display: block;
  3. margin-bottom: 1.9em;
  4. line-height: normal;
  5. .post-year {
  6. padding-top: 6px;
  7. margin-right: 1.8em;
  8. font-size: 1.6em;
  9. color: var(--c-txt-alt);
  10. &:hover {
  11. cursor: pointer;
  12. color: $accent;
  13. }
  14. }
  15. .posts-list {
  16. flex-grow: 1;
  17. margin: 0;
  18. padding: 0;
  19. list-style: none;
  20. }
  21. .post-item > a {
  22. display: flex;
  23. justify-content: space-between;
  24. align-items: baseline;
  25. padding: 12px 0;
  26. }
  27. .post-day {
  28. flex-shrink: 0;
  29. margin-left: 1em;
  30. color: var(--c-txt-alt);
  31. }
  32. }