blob: 9aaea47986c3873d542127acce5728f9db618a00 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
body {
margin: 20px;
}
h1 {
-webkit-padding-start: 75px;
background-image: url('shared/images/history_section.png');
background-position: left;
background-repeat: no-repeat;
font-size: 156%;
font-weight: bold;
margin: 0;
padding-bottom: 20px;
padding-top: 20px;
}
html[dir=rtl] h1 {
background-position: right;
}
#magic-summary {
background-color: #ebeff9;
border-top: 1px solid #9cc2ef;
margin-bottom: 6px;
margin-top: 12px;
padding: 3px;
}
#magic-summary-text {
font-weight: bold;
}
#sessions-summary {
background-color: #ebeff9;
border-top: 1px solid #9cc2ef;
margin-bottom: 6px;
margin-top: 12px;
padding: 3px;
}
#sessions-summary-text {
font-weight: bold;
}
#session-list h3 {
font-size: 100%;
}
#session-list > div > * {
margin: 0.75em 0;
}
#session-list a:visited {
color: #666;
}
#session-list > div:not(:last-child) {
border-bottom: 1px solid #bbb;
}
a.tab-link {
background: no-repeat 0% 50%;
background-size: 16px 16px;
display: block;
line-height: 20px;
padding-left: 18px;
}
.indent {
margin: 4px;
padding-left: 16px;
}
.expandable {
cursor: pointer;
font-size: 16px;
}
|