-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (91 loc) · 2.27 KB
/
index.html
File metadata and controls
101 lines (91 loc) · 2.27 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LEGACY APDFL 18 API Reference</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: system-ui, -apple-system, sans-serif;
color: #333;
background: #eee;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 40px 20px;
}
.card {
background: #fff;
border: 1px solid #ccc;
padding: 48px 44px;
max-width: 480px;
width: 100%;
}
.badge {
display: inline-block;
font-size: 0.7rem;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
color: #666;
background: #e8e8e8;
border: 1px solid #ccc;
padding: 3px 8px;
margin-bottom: 16px;
}
h1 {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 8px;
}
.subtitle {
color: #666;
font-size: 0.9rem;
margin-bottom: 32px;
}
.links {
list-style: none;
display: flex;
flex-direction: column;
gap: 10px;
}
.links a {
display: flex;
align-items: center;
justify-content: space-between;
padding: 14px 18px;
border: 1px solid #ccc;
background: #fafafa;
color: #333;
text-decoration: none;
font-weight: 500;
font-size: 0.95rem;
}
.links a:hover {
background: #e8e8e8;
}
.links a::after {
content: "\2192";
color: #999;
}
.links a:hover::after {
color: #333;
}
</style>
</head>
<body>
<div class="card">
<span class="badge">Legacy</span>
<h1>APDFL 18</h1>
<p class="subtitle">API Reference Documentation</p>
<ul class="links">
<li><a href="http://legacy-docs.datalogics.com/apdfl18/DotNet/index.html">.NET</a></li>
<li><a href="http://legacy-docs.datalogics.com/apdfl18/DotNetFramework/index.html">.NET Framework</a></li>
<li><a href="http://legacy-docs.datalogics.com/apdfl18/CPlusPlus/API_Reference.html">C++</a></li>
<li><a href="http://legacy-docs.datalogics.com/apdfl18/Java/index.html">Java</a></li>
</ul>
</div>
</body>
</html>