Welcome to mirror list, hosted at ThFree Co, Russian Federation.

elements.scss « _components « styles « src - github.com/eshlox/simplicity.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cf6249bdaf7ab51ed3f60bb77fd9f93580d359ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
ol.decimal-list {
  list-style: none;
  counter-reset: li;

  li {
    counter-increment: li;

    &::before {
      content: counter(li, decimal);
      color: $color-silver;
      direction: rtl;
      display: inline-block;
      font-size: 0.8rem;
      margin-left: -1.5rem;
      margin-right: 0.5rem;
      text-align: right;
      width: 1rem;
    }
  }
}