blob: eb77ef14d88abaff91162e02552d47954c3ddd22 (
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
|
table.calltree {
width : 100%;
}
td {
padding-top: 0.1em;
padding-bottom: 0.1em;
}
.numeric {
width : 12ex;
}
.numeric-hidden {
display : none;
}
body {
font-family: 'Roboto', sans-serif;
}
.tree-row-arrow {
margin-right: 0.2em;
text-align: right;
}
.code-type-chip {
border-radius : 1em;
padding : 0.2em;
background-color : #4040c0;
color: #ffffff;
font-size : small;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.tree-row-name {
margin-left: 0.2em;
}
.codeid-link {
text-decoration: underline;
cursor: pointer;
}
div.mode-button {
padding: 1em 3em;
display: inline-block;
background-color: #6070ff;
color : #ffffff;
margin: 0 0.2em 2em 0;
box-shadow: 3px 3px 2px #d0d0ff;
}
div.mode-button:hover {
background-color: #4858ff;
}
div.active-mode-button {
background-color: #0000ff;
box-shadow: 3px 3px 2px #a0a0ff;
}
div.active-mode-button:hover {
background-color: #0000ff;
}
|