summaryrefslogtreecommitdiffstats
path: root/assets/css/components/_page-header.scss
blob: 886b3e9f0572c103cc2cdd79c5465871d5b2efde (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 {
        content: str-repeat('░', 120);
        display: block;
        position: relative;
        z-index: -10;
        height: $line-height;
        margin-top: px-to-em(2px);
        padding-top: px-to-em(2px);
        border-top: 1px solid var(--fg-minus);
        color: var(--fg-minus);
        line-height: $code-block--line-height;
    }
}