forked from nexu-io/open-design
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
221 lines (205 loc) · 8.21 KB
/
Copy pathexample.html
File metadata and controls
221 lines (205 loc) · 8.21 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Reach every country — Charlotte & Vine</title>
<style>
:root {
--paper: #f3eee5;
--ink: #1a1816;
--muted: #7a766c;
--accent: #c0563b;
--serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
--mono: ui-monospace, 'JetBrains Mono', monospace;
}
* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; }
body { background: var(--paper); color: var(--ink); font: 14px/1.5 -apple-system, system-ui, sans-serif; overflow: hidden; }
main {
position: relative;
width: 100vw;
height: 100vh;
background:
radial-gradient(circle at 50% 50%, rgba(26,24,22,0.04), transparent 70%),
radial-gradient(circle, rgba(26,24,22,0.10) 1px, transparent 1.4px) 0 0 / 28px 28px,
var(--paper);
overflow: hidden;
}
.chrome { position: absolute; left: 36px; right: 36px; font: 10px/1.4 var(--mono); color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; }
.chrome.top { top: 28px; display: flex; justify-content: space-between; align-items: center; }
.chrome.top .right { display: flex; align-items: center; gap: 22px; }
.chrome.top .rule { width: 60px; height: 1px; background: var(--ink); opacity: 0.6; }
.chrome.bot { bottom: 28px; display: flex; justify-content: space-between; align-items: center; }
.stage {
position: absolute;
inset: 0;
display: grid;
place-items: center;
}
.composition {
position: relative;
width: min(78vh, 78vw);
aspect-ratio: 1 / 1;
}
.ring {
position: absolute;
inset: 0;
border-radius: 50%;
border: 1px solid rgba(26,24,22,0.45);
animation: spin 60s linear infinite;
}
.ring.r2 {
inset: 4%;
border-color: rgba(26,24,22,0.30);
animation-duration: 90s;
animation-direction: reverse;
}
.ring.r3 {
inset: 10%;
border-color: rgba(26,24,22,0.22);
border-style: dashed;
animation-duration: 180s;
}
.ring.r4 {
inset: 18%;
border-color: rgba(26,24,22,0.12);
animation-duration: 36s;
}
.ring-labels { position: absolute; inset: 0; animation: spin 60s linear infinite; }
.ring-labels span {
position: absolute;
left: 50%; top: 50%;
font: 12px/1 var(--serif);
font-style: italic;
color: var(--ink);
letter-spacing: 0.02em;
transform-origin: 0 0;
white-space: nowrap;
}
.ring-labels span.l1 { transform: rotate(-12deg) translate(0, -49vh); }
.ring-labels span.l2 { transform: rotate(34deg) translate(0, -49vh); }
.ring-labels span.l3 { transform: rotate(78deg) translate(0, -49vh); }
.ring-labels span.l4 { transform: rotate(132deg) translate(0, -49vh); }
.ring-labels span.l5 { transform: rotate(178deg) translate(0, -49vh); }
.ring-labels span.l6 { transform: rotate(224deg) translate(0, -49vh); }
.ring-labels span.l7 { transform: rotate(266deg) translate(0, -49vh); }
.ring-labels span.l8 { transform: rotate(312deg) translate(0, -49vh); }
.ring-labels span i { display: inline-block; transform: rotate(0deg); /* counter rotation handled inside */ }
.globe {
position: absolute;
inset: 22%;
border-radius: 50%;
animation: spin 38s linear infinite reverse;
transform-style: preserve-3d;
}
.globe svg { width: 100%; height: 100%; display: block; }
.focal-dot {
position: absolute;
left: 50%; top: 50%;
width: 7px; height: 7px;
background: var(--accent);
border-radius: 50%;
transform: translate(-50%,-50%);
animation: pulse 2.6s ease-in-out infinite;
box-shadow: 0 0 0 0 rgba(192,86,59,0.35);
}
.meta-tl { position: absolute; top: 96px; left: 56px; font: 10px/1.5 var(--mono); color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; }
.meta-tl b { display: block; color: var(--ink); margin-bottom: 4px; letter-spacing: 0.12em; }
.issue { position: absolute; top: 96px; right: 56px; font: 9px/1.3 var(--mono); color: var(--muted); letter-spacing: 0.18em; text-align: right; text-transform: uppercase; }
.issue .num { font: 18px/1 var(--serif); font-style: italic; color: var(--ink); display: block; letter-spacing: 0; margin-bottom: 4px; }
.headline {
position: absolute;
bottom: 80px;
left: 0; right: 0;
text-align: center;
font: 38px/1.1 var(--serif);
letter-spacing: -0.005em;
animation: type-in 1.4s cubic-bezier(.2,.7,.2,1) both;
}
.headline .em { font-style: italic; color: var(--ink); }
.headline .accent { font-style: italic; color: var(--accent); padding-left: 4px; padding-right: 4px; }
.baseline { position: absolute; bottom: 56px; left: 36px; right: 36px; height: 1px; background: rgba(26,24,22,0.25); }
@keyframes spin {
to { transform: rotate(360deg); }
}
@keyframes pulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(192,86,59,0.45); transform: translate(-50%,-50%) scale(1); }
50% { box-shadow: 0 0 0 18px rgba(192,86,59,0); transform: translate(-50%,-50%) scale(1.25); }
}
@keyframes type-in {
from { opacity: 0; letter-spacing: 0.06em; }
to { opacity: 1; letter-spacing: -0.005em; }
}
@media (max-width: 900px) {
.meta-tl { left: 20px; }
.issue { right: 20px; }
.headline { font-size: 28px; }
}
</style>
</head>
<body>
<main data-od-id="stage">
<div class="chrome top">
<div>ANTHROPIC LABS — APR 17 · 2026</div>
<div class="right"><div class="rule"></div><div>HOW IT WORKS</div></div>
</div>
<div class="meta-tl">
<b>27 · CHARLOTTE × VINE</b>
19 · 2026
</div>
<div class="issue">
<span class="num">175</span>
LANGUAGES HAPPENING
</div>
<div class="stage">
<div class="composition" data-od-id="composition">
<div class="ring r1"></div>
<div class="ring r2"></div>
<div class="ring r3"></div>
<div class="ring r4"></div>
<div class="globe" data-od-id="globe">
<svg viewBox="0 0 200 200" aria-hidden="true">
<defs>
<radialGradient id="globeShade" cx="35%" cy="32%" r="78%">
<stop offset="0%" stop-color="#fffaf0"/>
<stop offset="60%" stop-color="#ece6da"/>
<stop offset="100%" stop-color="#cfc8b9"/>
</radialGradient>
</defs>
<circle cx="100" cy="100" r="92" fill="url(#globeShade)" stroke="rgba(26,24,22,0.35)" stroke-width="0.7"/>
<g fill="none" stroke="rgba(26,24,22,0.40)" stroke-width="0.7">
<ellipse cx="100" cy="100" rx="92" ry="20"/>
<ellipse cx="100" cy="100" rx="92" ry="48"/>
<ellipse cx="100" cy="100" rx="92" ry="78"/>
<ellipse cx="100" cy="100" rx="20" ry="92"/>
<ellipse cx="100" cy="100" rx="48" ry="92"/>
<ellipse cx="100" cy="100" rx="78" ry="92"/>
</g>
<g fill="rgba(26,24,22,0.28)" stroke="rgba(26,24,22,0.55)" stroke-width="0.6">
<path d="M 64 70 Q 78 58 96 64 L 110 78 Q 102 92 88 96 L 70 92 Q 60 84 64 70 Z"/>
<path d="M 116 70 Q 138 64 156 80 Q 152 96 138 100 Q 124 96 116 86 Z"/>
<path d="M 54 110 Q 72 110 84 124 Q 80 142 64 150 Q 50 138 54 110 Z"/>
<path d="M 102 118 Q 124 112 146 126 Q 142 144 120 152 Q 102 144 102 118 Z"/>
<path d="M 84 36 Q 98 32 112 38 L 108 50 Q 96 56 84 50 Z"/>
<path d="M 80 158 Q 96 156 110 162 L 104 174 Q 90 174 80 168 Z"/>
</g>
</svg>
</div>
<div class="focal-dot"></div>
</div>
</div>
<div class="ring-labels" data-od-id="ring-labels" aria-hidden="true">
<!-- positioned around the outer ring; co-rotates with .ring -->
</div>
<div class="headline" data-od-id="headline">
<span class="em">Reach</span> every <span class="accent">country.</span>
</div>
<div class="baseline"></div>
<div class="chrome bot">
<div>SIGNAL · LIVE</div>
<div>BROADCASTING / 0001</div>
</div>
</main>
</body>
</html>