summaryrefslogtreecommitdiff
path: root/docs/examples/selection-example-1.css
blob: 044e0538a79cf853ff2c43117ad22f2958d832b8 (plain)
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
report
{ 
  color : red;
}

report > entry
{ 
  color : blue;
}

note
{ 
  color : note-color;
  frame : solid;
}

note[id]
{ 
  color : note-id-color;
  frame : solid;
}

note[id=bar]
{ 
  margin : 5px;
  color: note-id-bar-color ;
}

note[id=foo]
{ 
  color : note-id-foo-color;
}

entry[type=notice] note[id=bar]
{ 
  padding : 5px;
}

note + notea {
     color: notea-color ;
}