-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (56 loc) · 1.53 KB
/
Copy pathindex.html
File metadata and controls
56 lines (56 loc) · 1.53 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Threshold | Website Collection</title>
<style>
:root {
color-scheme: dark;
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: #07100e;
color: #e9f0ed;
}
body {
min-height: 100vh;
margin: 0;
display: grid;
place-items: center;
padding: 32px;
}
main {
width: min(920px, 100%);
padding: clamp(28px, 6vw, 72px);
border: 1px solid rgba(213, 234, 225, 0.14);
background: linear-gradient(135deg, rgba(99, 230, 181, 0.09), transparent 38%), #0b1714;
}
p {
max-width: 640px;
color: #91a19c;
line-height: 1.7;
}
h1 {
margin: 0 0 16px;
font-size: clamp(3rem, 8vw, 7rem);
line-height: 0.92;
letter-spacing: -0.06em;
}
a {
display: inline-flex;
margin-top: 20px;
padding: 14px 18px;
background: #63e6b5;
color: #07100e;
font-weight: 800;
text-decoration: none;
}
</style>
</head>
<body>
<main>
<h1>Threshold</h1>
<p>A shared collection for review websites, publication portals, and future project pages.</p>
<a href="threshold/construction-intelligence-publication/">Open Construction Intelligence Review</a>
</main>
</body>
</html>