Sha256: 43ed63fd7e3fa5cb352a40dbf6e96f32bf44800aa76d4f6f9adfae102e6753a3

Contents?: true

Size: 1.2 KB

Versions: 5

Compression:

Stored size: 1.2 KB

Contents

.post-list {
  & li {
    margin-bottom: 12px;
  }
}

.post-list-wrapper {
  display: grid;
  grid-template-columns: 1fr 6fr;
  grid-template-rows: 1 1;
  grid-gap: 8px 0px;
}

.post-list-item {
  display: grid;
  grid-column: 1 / end;
  grid-row: 1;
  grid-template-columns: 1fr 6fr;
  grid-template-rows: 1fr 1 1; 
  grid-gap: 4px 0px;
}

.post-list-icon {
  width: 80%;
  max-width: 48px;
  margin: auto;
  grid-column: 1;
  grid-row: 1 / 3;
}

.post-link {
  font-size: 24px;
  grid-column: 2;
  grid-row: 1;

  @include media-query($on-palm) {
    font-size: 1rem;
  }
}

.post-meta {
  font-size: 14px;
  grid-column: 2;
  grid-row: 2;
}

.post-excerpt {
  font-size: 12px;
  grid-column: 2;
  grid-row: 3;
  text-overflow: ellipsis;
  overflow: hidden;
}

.post-tags {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  grid-row: 2;
  grid-column: 2 /3;
}

.post-tag {
  &:hover {
    color: blue;
    text-decoration: underline;
  }
}

.post-categories-label {
  font-weight: bold;
}

.pager {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 12px;

  & * {
    flex-shrink: 1;
    flex-basis: 1/3;
  }
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
jekyll-98-0.3.3 _sass/jekyll-98/_post_list.scss
jekyll-98-0.3.2 _sass/jekyll-98/_post_list.scss
jekyll-98-0.3.0 _sass/jekyll-98/_post_list.scss
jekyll-98-0.2.0 _sass/jekyll-98/_post_list.scss
jekyll-98-0.1.0 _sass/jekyll-98/_post_list.scss