-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
118 lines (98 loc) · 1.76 KB
/
style.css
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
body {
font-family: Verdana;
font-size: 12px;
line-height: 15px;
}
.hidden {
display: none;
}
.file-item {
}
.file-name {
font-size: 20px;
margin: 20px 0;
}
.fn-names {
}
.fn-item {
margin: 20px 10px;
}
.fn-deopt {
color: #ce1800;
}
.fn-name {
display: block;
text-decoration: none;
font-size: 16px;
color: black;
margin: 5px 0;
}
.fn-versions {
}
.deopt {
color: #ce1800;
}
.recompile {
border-top: 1px solid #EEE;
}
.recompile:first-child {
border-top: 0;
}
.code {
border: 1px solid #EEE;
padding: 10px;
font-size: 12px;
font-family: Consolas, Menlo, Courier, monospace;;
white-space: pre;
border-radius: 3px;
}
.runtime {
background: lightpink;
cursor: default;
}
.LoadNamedGeneric, .StoreNamedGeneric, .LoadKeyedGeneric, .StoreKeyedGeneric, .CompareGeneric{
}
.LoadNamedGeneric:before, .StoreNamedGeneric:before, .LoadKeyedGeneric:before, .StoreKeyedGeneric:before, .CompareGeneric:before{
/*content: 'Ⓖ';*/
/*font-size: 10px;*/
/*padding-left: 3px;*/
}
.CallWithDescriptor{
background: silver;
}
a.CallWithDescriptor {
color: black;
border: 1px dotted white;
text-decoration: none;
cursor: pointer;
}
.inline {
background: #a1d6fa;
}
.inline-code .code {
border-color: #a1d6fa;
margin-top: -1px;
}
.recompile-title{
}
.toggle-next{
cursor: pointer;
}
.future-deopt {
border-bottom: 2px solid blueviolet;
}
[data-title]:hover {
position: relative;
}
[data-title]:hover:after {
content: attr(data-title);
padding: 1px 3px;
color: #333;
position: absolute;
background: white;
/*border: 1px solid #EEE;*/
box-shadow: 1px 1px 5px rgba(0,0,0,.3);
border-radius: 3px;
left: 0;
top: -20px;
}