-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
53 lines (53 loc) · 1.16 KB
/
404.html
File metadata and controls
53 lines (53 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Page Not Found · InDesign ExtendScript API</title>
<link rel="stylesheet" href="styles/main.css" />
<style>
body {
overflow: auto;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: #f5f7fb;
}
.main {
max-width: 560px;
padding: 32px;
background: #ffffff;
border: 1px solid #dfe4ef;
border-radius: 8px;
text-align: center;
box-shadow: 0 12px 30px rgba(45, 75, 120, 0.1);
}
.main h1 {
font-size: 32px;
margin-bottom: 12px;
color: #295193;
}
.main p {
margin: 10px 0 18px;
font-size: 17px;
color: #333333;
}
.main a {
color: #295193;
font-weight: bold;
text-decoration: none;
}
.main a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="main">
<h1>Page not found</h1>
<p>The page you were looking for does not exist in the Adobe InDesign ExtendScript API documentation set.</p>
<p><a href="index.html">Return to the documentation home page</a></p>
</div>
</body>
</html>