Sha256: f6fa7b5e096b8fe8194c69cbd1e58d8449bc149623425d6bc2958b4f8137ff04

Contents?: true

Size: 1 KB

Versions: 1

Compression:

Stored size: 1 KB

Contents

@use '../abstracts/breakpoints' as bp;
@use '../abstracts/mixins' as mx;
@use '../abstracts/placeholders';

.dash {
  margin: 0 0.5rem 0.6rem 0.5rem;
  border-bottom: 2px dotted var(--dash-color);
}

#page-category,
#page-tag {
  ul > li {
    line-height: 1.5rem;
    padding: 0.6rem 0;

    /* dot */
    &::before {
      background: #999999;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      display: block;
      content: '';
      position: relative;
      top: 0.6rem;
      margin-right: 0.5rem;

      @include bp.lt(bp.get(sm)) {
        margin: 0 0.5rem;
      }
    }

    /* post's title */
    > a {
      @extend %no-bottom-border;

      font-size: 1.1rem;

      @include bp.lt(bp.get(sm)) {
        @include mx.text-ellipsis;
      }
    }
  }
}

/* tag icon */
#page-tag h1 > i {
  font-size: 1.2rem;
}

#page-category h1 > i {
  font-size: 1.25rem;
}

#page-category,
#page-tag,
#access-lastmod {
  a:hover {
    @extend %link-hover;

    margin-bottom: -1px; /* Avoid jumping */
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-theme-chirpy-7.2.0 _sass/pages/_category-tag.scss