terms.css (272B)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.terms {
  h3 {
    font-size: initial;
  }

  ul {
    list-style: none;

    li {
      a {
        color: var(--accent);
      }
    }

    li:not(:empty):before {
      content: '-';
      position: absolute;
      left: -20px;
      color: var(--accent);
    }
  }
}