Skip to content

Commit 356b79a

Browse files
committed
Adding files
1 parent 75be7d2 commit 356b79a

File tree

123 files changed

+45691
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+45691
-0
lines changed

.DS_Store

0 Bytes
Binary file not shown.

3PAPISchema/accumulatingamount.doc.html

+512
Large diffs are not rendered by default.

3PAPISchema/address.doc.html

+511
Large diffs are not rendered by default.

3PAPISchema/amount.doc.html

+512
Large diffs are not rendered by default.

3PAPISchema/assets/code.css

+143
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,143 @@
1+
.code {
2+
background-color: #f6f6f6;
3+
color: #4D4D4C;
4+
border: 1px solid #4D4D4C;
5+
font-size: 14px;
6+
font-family: 'Ubuntu Mono';
7+
cursor: text;
8+
list-style-type: decimal;
9+
border-radius: 0.25rem;
10+
}
11+
12+
.code .gutter {
13+
background: #f6f6f6;
14+
color: #4D4D4C;
15+
}
16+
17+
.code .print-margin {
18+
width: 1px;
19+
background: #f6f6f6
20+
}
21+
22+
.code li {
23+
min-height: 1em;
24+
background: #FFF;
25+
padding: 1px 8px;
26+
}
27+
.code li:hover {
28+
background: #EFEFEF;
29+
}
30+
31+
.code .tab {
32+
padding-left: 2em;
33+
}
34+
35+
.code .cursor {
36+
color: #AEAFAD
37+
}
38+
39+
.code .marker-layer .selection {
40+
background: #D6D6D6
41+
}
42+
43+
.code.multiselect .selection.start {
44+
box-shadow: 0 0 3px 0px #FFFFFF;
45+
}
46+
47+
.code .marker-layer .step {
48+
background: rgb(255, 255, 0)
49+
}
50+
51+
.code .marker-layer .bracket {
52+
margin: -1px 0 0 -1px;
53+
border: 1px solid #D1D1D1
54+
}
55+
56+
.code .marker-layer .active-line {
57+
background: #EFEFEF
58+
}
59+
60+
.code .gutter-active-line {
61+
background-color: #dcdcdc
62+
}
63+
64+
.code .marker-layer .selected-word {
65+
border: 1px solid #D6D6D6
66+
}
67+
68+
.code .invisible {
69+
color: #D1D1D1
70+
}
71+
72+
.code .keyword,
73+
.code .meta,
74+
.code .storage,
75+
.code .storage.type,
76+
.code .support.type {
77+
color: #8959A8
78+
}
79+
80+
.code .keyword.operator {
81+
color: #3E999F
82+
}
83+
84+
.code .constant.character,
85+
.code .constant.language,
86+
.code .constant.numeric,
87+
.code .keyword.other.unit,
88+
.code .support.constant {
89+
color: #F5871F
90+
}
91+
92+
.code .constant.other {
93+
color: #666969
94+
}
95+
96+
.code .invalid {
97+
color: #FFFFFF;
98+
background-color: #C82829
99+
}
100+
101+
.code .invalid.deprecated {
102+
color: #FFFFFF;
103+
background-color: #8959A8
104+
}
105+
106+
.code .fold {
107+
background-color: #4271AE;
108+
border-color: #4D4D4C
109+
}
110+
111+
.code .entity.name.function,
112+
.code .support.function,
113+
.code .variable.parameter,
114+
.code .variable {
115+
color: #4271AE
116+
}
117+
118+
.code .support.class,
119+
.code .support.type {
120+
color: #C99E00
121+
}
122+
123+
.code .heading,
124+
.code .markup.heading,
125+
.code .string {
126+
color: #718C00
127+
}
128+
129+
.code .entity.name.tag,
130+
.code .entity.other.attribute-name,
131+
.code .meta.tag,
132+
.code .string.regexp,
133+
.code .variable {
134+
color: #C82829
135+
}
136+
137+
.code .comment {
138+
color: #8E908C
139+
}
140+
141+
.code .indent-guide {
142+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bdu3f/BwAlfgctduB85QAAAABJRU5ErkJggg==) right repeat-y
143+
}

3PAPISchema/assets/require-by.css

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
div.require-by.anyone,
2+
ul.require-by a {
3+
max-width: 100%;
4+
overflow: hidden;
5+
text-overflow: ellipsis;
6+
white-space: nowrap;
7+
display: block;
8+
}
9+
10+
div.require-by.anyone {
11+
background-color: #f0f8fc;
12+
border: 1px solid #d8dde6;
13+
color: grey;
14+
padding: 2rem;
15+
text-align: center;
16+
margin: 1rem 0;
17+
border-radius: 0.25rem;
18+
}
19+
20+
ul.require-by {
21+
margin: 0;
22+
padding: 0;
23+
}
24+
25+
ul.require-by a {
26+
border-left: .25rem solid transparent;
27+
border-top: 1px solid transparent;
28+
border-bottom: 1px solid transparent;
29+
padding: .5rem 1.5rem;
30+
}
31+
32+
ul.require-by a:hover {
33+
text-decoration: none;
34+
background-color: #f0f8fc;
35+
border-color: #d8dde6;
36+
border-left-color: #005fb2;
37+
}
38+
39+
ul.require-by a em {
40+
margin-left: 1rem;
41+
font-size: .75rem;
42+
color: grey;
43+
}

0 commit comments

Comments
 (0)