summaryrefslogtreecommitdiffstats
path: root/assets/css/components/_page-header.scss
blob: dd273df221f23525711035f67cb926a3582e1eda (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.c-page-header {
  margin-bottom: $line-height * 2em;
  overflow: hidden;

  &::after {
    position: relative;
    z-index: -10;
    content: str-repeat("░", 120);
    display: block;
    height: $line-height;
    margin-top: px-to-em(2px);
    padding-top: px-to-em(2px);
    color: var(--fg-minus);
    border-top: 1px solid var(--fg-minus);
    line-height: $code-block--line-height;
  }
}