aboutsummaryrefslogtreecommitdiff
path: root/www/assets/res/css/todos.css
blob: f9aa23bcfa04cbc50698242bb2c82aa20ce3480f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
h3.todo {
  &::before {
    font-size: small;
  }

  &.working::before {
    content: "(working) ";
  }

  &.done::before {
    content: "(done) ";
  }

  &.give-up::before {
    content: "(give up) ";
  }
}