-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathog-card.html
More file actions
110 lines (108 loc) · 3.34 KB
/
Copy pathog-card.html
File metadata and controls
110 lines (108 loc) · 3.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&family=Playfair+Display:wght@600;700&family=Share+Tech+Mono&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 1200px; height: 630px; }
body {
width: 1200px; height: 630px;
background: radial-gradient(circle at center, #0f1225 0%, #060810 100%);
color: #d4af37;
font-family: 'Outfit', sans-serif;
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
/* faint grid */
body::before {
content: "";
position: absolute; inset: 0;
background-image:
linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
background-size: 40px 40px;
}
.frame {
position: absolute; inset: 28px;
border: 2px solid rgba(212,175,55,0.35);
border-radius: 8px;
}
.top-secret {
position: absolute;
top: 70px; right: 70px;
border: 3px solid #9e1d1d;
color: #9e1d1d;
font-family: 'Share Tech Mono', monospace;
font-size: 26px;
font-weight: 700;
letter-spacing: 4px;
padding: 8px 20px;
transform: rotate(8deg);
opacity: 0.9;
}
.agency {
display: flex; align-items: center; gap: 18px;
margin-bottom: 34px;
}
.agency .name {
font-family: 'Share Tech Mono', monospace;
font-size: 20px;
letter-spacing: 6px;
color: rgba(212,175,55,0.75);
}
.title {
font-family: 'Playfair Display', serif;
font-size: 104px;
font-weight: 700;
line-height: 1;
text-align: center;
background: linear-gradient(180deg, #f4d874 0%, #d4af37 55%, #9c7c1f 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
letter-spacing: 2px;
text-shadow: 0 2px 30px rgba(212,175,55,0.15);
}
.subtitle {
margin-top: 26px;
font-size: 30px;
color: #cbb7ef;
text-align: center;
max-width: 850px;
line-height: 1.35;
}
.subtitle b { color: #a855f7; }
.status {
margin-top: 40px;
font-family: 'Share Tech Mono', monospace;
font-size: 22px;
letter-spacing: 3px;
color: #9e1d1d;
border: 2px solid rgba(158,29,29,0.6);
padding: 10px 26px;
border-radius: 4px;
background: rgba(158,29,29,0.08);
}
</style>
</head>
<body>
<div class="frame"></div>
<div class="top-secret">TOP SECRET</div>
<div class="agency">
<svg width="66" height="66" viewBox="0 0 100 100">
<circle cx="50" cy="50" r="45" fill="none" stroke="#d4af37" stroke-width="2"/>
<circle cx="50" cy="50" r="38" fill="none" stroke="rgba(212,175,55,0.5)" stroke-width="1" stroke-dasharray="3 3"/>
<path d="M 30,50 Q 50,20 70,50 Q 50,80 30,50" fill="none" stroke="#a855f7" stroke-width="2"/>
<text x="50" y="55" font-family="'Playfair Display', serif" font-size="18" fill="#d4af37" text-anchor="middle" font-weight="bold">GBC</text>
</svg>
<span class="name">GLOBAL BUREAU OF CELIBACY</span>
</div>
<h1 class="title">THE SINGLE FILES</h1>
<p class="subtitle">Na official investigation into <b>anybody</b> love history. The Bureau get plenty question 🕵️</p>
<div class="status">CASE STATUS: WE NEVER CONFIRM</div>
</body>
</html>