Line numers in css

.code {
    background: $bg-color;
    width: 60%;
    margin: 50px auto;
    white-space: pre-wrap;
    counter-reset: step;
    counter-increment: step 0;
    .l {
        &:before {
            content: counter(step);
            counter-increment: step;
        }
    }
}