-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathog-card.html
More file actions
62 lines (62 loc) · 2.11 KB
/
Copy pathog-card.html
File metadata and controls
62 lines (62 loc) · 2.11 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
<!DOCTYPE html>
<!--
Source for og-image.png (1200×630 social-share card).
Regenerate after editing:
"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" \
--headless=new --hide-scrollbars --window-size=1200,630 \
--screenshot="og-image.png" "$(pwd)/og-card.html"
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 1200px; height: 630px; overflow: hidden; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
background:
radial-gradient(70% 90% at 0% 0%, rgba(0,215,238,0.22), transparent 60%),
radial-gradient(70% 90% at 100% 100%, rgba(97,0,255,0.30), transparent 60%),
#0E0F11;
color: #fff;
display: flex;
align-items: center;
padding: 0 84px;
gap: 58px;
}
.icon {
flex: 0 0 auto;
width: 264px; height: 264px;
border-radius: 56px;
background: #fff;
padding: 38px;
box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.icon img { width: 100%; height: 100%; display: block; }
.copy { display: flex; flex-direction: column; gap: 18px; }
.eyebrow {
font-size: 27px; font-weight: 600; letter-spacing: 0.16em;
text-transform: uppercase; color: #00D7EE;
}
h1 { font-size: 96px; font-weight: 800; line-height: 0.94; letter-spacing: -0.025em; }
.accent {
height: 10px; width: 190px; border-radius: 999px; margin: 4px 0 2px;
background: linear-gradient(90deg, #00D7EE 0%, #6100FF 100%);
}
p { font-size: 34px; font-weight: 500; color: rgba(255,255,255,0.88); line-height: 1.3; }
.url { font-size: 28px; font-weight: 600; color: rgba(255,255,255,0.62); margin-top: 8px; }
</style>
</head>
<body>
<div class="icon">
<img src="https://cdn.ahlab.org/media/site/black_logo_circle.png" alt="AHL">
</div>
<div class="copy">
<div class="eyebrow">Augmented Human Lab</div>
<h1>Asset<br>Management</h1>
<div class="accent"></div>
<p>Track every lab asset — who holds it and<br>where it lives, straight from its QR code.</p>
<div class="url">ams.ahlab.org</div>
</div>
</body>
</html>