blob: fc141fbfbf39a966061a9d5d916e328a36db736b (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
|
a.headerlink {
color: #ffffff;
font-size: 0.8em;
padding: 0 4px 0 4px;
text-decoration: none;
}
a.headerlink:hover {
background-color: #ffffff;
color: #c60f0f;
}
#sidebar_toc ul {
list-style-type: none;
}
.toc_handle {
background : transparent
url(space.gif);
background-repeat : no-repeat;
background-position: center bottom;
display : block;
float : left;
width : 9px;
height : 15px;
}
.toc_collapsed {
background : transparent
url(plus.gif);
background-repeat : no-repeat;
background-position: center bottom;
cursor : pointer;
}
.toc_expanded {
background : transparent
url(minus.gif);
background-repeat : no-repeat;
background-position: center bottom;
cursor : pointer;
}
body {
-webkit-animation-duration: 0.1s;
-webkit-animation-name: fontfix;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: linear;
-webkit-animation-delay: 0.5s;
}
@-webkit-keyframes fontfix{
from{ opacity: 1; }
to{ opacity: 1; }
}
|