aboutsummaryrefslogtreecommitdiff
path: root/example.csma
blob: bc78e3459ea4501dd048685679daf4ae4076ed7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<Colors> {
  <Text> {
    <FG> { red }
  }
}
<Alignment> {
  <Center> {
    margin-left: auto;
    margin-right: auto;
  }
}

#b {
  color: <Colors/Text/FG>;
}

<Object a> {
  #a {
    abc: a;
    color: <Colors/Text/FG>;
    margin: 2em;
  }
  <Object b>
}

<Object b/Val>

<Object b>
// This is an example object
{
  .b {
    margin: 0.2em;
    padding: 0.5em;
  }
  <Val> {
    a { 
      display: table;
      <Alignment/Center>
    }
  }
}