123456789101112131415161718192021222324252627282930313233343536 |
- .posts-group {
- display: block;
- margin-bottom: 1.9em;
- line-height: normal;
- .post-year {
- padding-top: 6px;
- margin-right: 1.8em;
- font-size: 1.6em;
- color: var(--c-txt-alt);
- &:hover {
- cursor: pointer;
- color: $accent;
- }
- }
- .posts-list {
- flex-grow: 1;
- margin: 0;
- padding: 0;
- list-style: none;
- }
- .post-item > a {
- display: flex;
- justify-content: space-between;
- align-items: baseline;
- padding: 12px 0;
- }
- .post-day {
- flex-shrink: 0;
- margin-left: 1em;
- color: var(--c-txt-alt);
- }
- }
|