-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagndb.html
More file actions
144 lines (136 loc) · 5.87 KB
/
Copy pathagndb.html
File metadata and controls
144 lines (136 loc) · 5.87 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex, nofollow">
<title>AGN-DB Preview | Alessandro Peca</title>
<link rel="icon" href="imgs/black_hole_icon.png" type="image/png">
<link rel="stylesheet" href="styles.css">
<style>
.embed-block {
margin: 2.5rem auto;
max-width: 1100px;
}
.embed-block h2 {
text-align: left;
}
.embed-block iframe {
width: 100%;
border: 1px solid #e5e7eb;
border-radius: 8px;
display: block;
}
.preview-nav {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
justify-content: center;
margin: 1.5rem 0 2.5rem;
}
.preview-nav a {
display: inline-flex;
align-items: center;
padding: 0.6rem 1.2rem;
background: #f1f5f9;
color: #374151;
text-decoration: none;
border-radius: 8px;
font-size: 0.95em;
font-weight: 500;
border: 1px solid #e2e8f0;
transition: all 0.2s ease;
}
.preview-nav a:hover {
background: #e2e8f0;
}
.agndb-header {
background-color: #04060f;
background-image: linear-gradient(rgba(4, 6, 15, 0.35), rgba(4, 6, 15, 0.35)),
url('agndb_pages/sky_density_no_count_transparent_whitetext.png');
background-size: 100% 100%, 70% auto;
background-position: center;
background-repeat: no-repeat;
height: 340px;
display: flex;
align-items: center;
justify-content: center;
}
.agndb-header .header-content {
width: 100%;
padding: 0 1.5rem;
text-align: center;
}
.agndb-header h1 {
display: inline-block;
margin: 0 auto;
padding: 0.5rem 1.5rem;
background: rgba(4, 6, 15, 0.45);
border: 1px solid rgba(255, 255, 255, 0.18);
border-radius: 10px;
text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}
.preview-nav a.download-link {
background: #dbeafe;
border-color: #93c5fd;
color: #1e40af;
}
.preview-nav a.download-link:hover {
background: #bfdbfe;
}
</style>
</head>
<body>
<header class="agndb-header">
<div class="header-content">
<h1>The AGN Database (AGN-DB) v1.0</h1>
</div>
</header>
<main>
<section id="preview-content">
<p style="text-align: center;">Reference material for the AGN-DB catalog.</p>
<p style="text-align: center;">The central AGN-DB website is hosted at
<a href="http://agndb.physics.miami.edu/" target="_blank" rel="noopener">agndb.physics.miami.edu</a>
— this page is the alternative link.</p>
<p class="preview-note" style="text-align: center;">If you have any comments, you're more than welcome to reach out — <a href="mailto:peca.alessandro@gmail.com">get in touch</a>!</p>
<nav class="preview-nav">
<a href="#source-table-ref">Source Catalogs</a>
<a href="#col-description">Column Description</a>
<a href="#classification-scheme">Classification Scheme</a>
<a href="agndb_pages/universe/index.html" target="_blank" rel="noopener">Catalog Visualizer App</a>
<a class="download-link" href="https://mega.nz/file/s4c21ZZL" target="_blank" rel="noopener">Download Catalog</a>
</nav>
<p class="preview-note" style="text-align: center;">A decryption key is required to access the catalog file — contact Alessandro Peca directly to obtain it.</p>
<div class="embed-block" id="source-table-ref">
<h2>Source Catalogs</h2>
<iframe src="agndb_pages/source_table_ref.html" title="Source Catalogs" loading="lazy"></iframe>
</div>
<div class="embed-block" id="col-description">
<h2>Column Description</h2>
<iframe src="agndb_pages/col_description.html" title="Column Description" loading="lazy"></iframe>
</div>
<div class="embed-block" id="classification-scheme">
<h2>Classification Scheme</h2>
<iframe src="agndb_pages/classification_scheme.html" title="Classification Scheme" loading="lazy"></iframe>
</div>
<p class="preview-note" style="text-align: center; margin-top: 2.5rem;">AGN-DB is supported by the NASA, NSF, and University of Miami<br>Copyright © 2026, <a href="https://welcome.miami.edu/">University of Miami</a></p>
</section>
</main>
<footer>
<p>© 2026 Alessandro Peca's Webpage. All rights reserved.</p>
</footer>
<script>
function autoResizeIframe(iframe) {
const resize = () => {
try {
iframe.style.height = iframe.contentWindow.document.documentElement.scrollHeight + "px";
} catch (e) {
iframe.style.height = "800px";
}
};
iframe.addEventListener("load", resize);
}
document.querySelectorAll("#preview-content iframe").forEach(autoResizeIframe);
</script>
</body>
</html>