4
4
< html xmlns ="http://www.w3.org/1999/xhtml " xml:lang ="en " lang ="en ">
5
5
< head >
6
6
< title > Feature comparison blah</ title >
7
+ < meta http-equiv ="Content-Type " content ="text/html;charset=utf-8 " />
7
8
< style type ="text/css ">
8
- .implemented { background-color : green }
9
- .partial { background-color : yellow }
10
- .missing { background-color : red }
9
+ .implemented {
10
+ background-color : # 11AA11 ;
11
+ color : white;
12
+ }
13
+ .partial {
14
+ background-color : # fff8dc ;
15
+ color : black;
16
+ }
17
+ .missing {
18
+ background-color : # ff7f50 ;
19
+ color : black;
20
+ }
11
21
.implemented , .partial , .missing {
12
- text-align : center
22
+ text-align : center;
23
+ width : 150px ;
24
+ font-weight : bold;
25
+ font-family : monospace;
26
+ font-size : 18px ;
27
+ }
28
+
29
+ .subsection {
30
+ padding-top : 1em ;
31
+ text-align : left;
13
32
}
14
33
</ style >
15
34
18
37
< h1 > Feature comparison of Perl 6 compilers</ h1 >
19
38
20
39
< h2 > Legend</ h2 >
21
- < table >
22
- < tr > < td class ="implemented "> +</ td > < td > implemented</ td > </ tr >
23
- < tr > < td class ="partial "> +-</ td > < td > partially implemented</ td > </ tr >
24
- < tr > < td class ="missing "> -</ td > < td > not yet implemented</ td > </ tr >
25
- </ table >
40
+ < dl >
41
+ < dt class ="implemented "> +</ dt >
42
+ < dd > implemented</ dd >
43
+ < dt class ="partial "> ±</ dt >
44
+ < dd > partially implemented</ dd >
45
+ < dt class ="missing "> -</ dt >
46
+ < dd > not yet implemented</ dd >
47
+ </ dl >
26
48
27
49
< h2 > Features</ h2 >
28
50
< table >
@@ -38,13 +60,11 @@ <h2>Features</h2>
38
60
< %loop rows%>
39
61
< tr >
40
62
< %if section%>
41
- < th colspan =" <%var columns%> "> < %var section%> </ th >
63
+ < th class =" subsection "> < %var section%> </ th >
42
64
< %else%>
43
65
< td > < %var feature%> </ td >
44
66
< %loop compilers%>
45
- < td class ="<%var class%> ">
46
- < %var status%>
47
- </ td >
67
+ < td class ="<%var class%> "> < %var status%> </ td >
48
68
< %/loop%>
49
69
< %/if%>
50
70
</ tr >
0 commit comments