-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathoutput.html
58 lines (56 loc) · 1.26 KB
/
output.html
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>%title% accessibility tree</title>
<style>
body{font-size:.9em; font-family:Tahoma, Geneva, sans-serif}
ul {font-family:"Courier New", Courier, monospace}
input[type="checkbox"]:checked ~ section[id^="x-details"] {
display: block;
}
input[type="checkbox"] ~ section[id^="x-details"] {
display: none;
}
input[type="checkbox"]:checked ~ label:before {
transform: rotate(90deg);
}
input[type="checkbox"] ~ label:before {
content: "►";
font-size: 0.8em;
margin-right: 5px;
position: relative;
transition: all 0.5s linear 0s;
}
input[type="checkbox"]:checked ~ label:before {
color: blue;
content: "▼";
position: relative;
transition: all 0.5s linear 0s;
}
input[type="checkbox"]:focus + label {
background: #CFCFCF;
}
label {
background: none repeat scroll 0 0 white;
cursor: pointer;
display: inline-block;
margin-left: -24px;
padding-left: 5px;
padding-top: 0.5em;
label {
background: none repeat scroll 0 0 white;
cursor: pointer;
display: inline-block;
margin-left: -24px;
padding-left: 5px;
padding-top: 0.5em;
padding-right: 5px;
}
.element strong {font-size:larger}
</style>
</head>
<body>
%contents%
</body>
</html>