-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
190 lines (145 loc) · 3.15 KB
/
Copy pathindex.html
File metadata and controls
190 lines (145 loc) · 3.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Domain Material</title>
<meta name="description" content="Curated science, infrastructure, aerospace, AI, agentic, materials, and technology domains.">
<style>
:root{
--bg1:#0E1113;
--bg2:#1C2226;
--text:#F5F7F2;
--muted:#B7C0B0;
--accent:#C8FF5A;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
background:linear-gradient(135deg,var(--bg1),var(--bg2));
color:var(--text);
min-height:100vh;
overflow-x:hidden;
position:relative;
}
/* Raining letters */
#rain{
position:fixed;
inset:0;
pointer-events:none;
z-index:0;
overflow:hidden;
}
.letter{
position:absolute;
color:rgba(200,255,90,.12);
font-size:18px;
animation:fall linear infinite;
}
@keyframes fall{
from{
transform:translateY(-100vh);
}
to{
transform:translateY(100vh);
}
}
/* Content */
.container{
position:relative;
z-index:1;
max-width:900px;
margin:auto;
padding:120px 30px;
}
h1{
font-size:3rem;
margin-bottom:20px;
color:var(--accent);
}
p{
color:var(--muted);
line-height:1.7;
margin-bottom:25px;
}
.categories{
margin:40px 0;
}
.categories li{
margin-bottom:12px;
color:var(--text);
}
a{
color:var(--accent);
text-decoration:none;
}
a:hover{
text-decoration:underline;
}
.button{
display:inline-block;
margin-top:20px;
padding:14px 24px;
border:1px solid var(--accent);
border-radius:8px;
color:var(--accent);
transition:.25s;
}
.button:hover{
background:rgba(200,255,90,.1);
}
.footer{
margin-top:60px;
color:#7C8778;
font-size:.9rem;
}
</style>
</head>
<body>
<div id="rain"></div>
<div class="container">
<h1>Domain Material</h1>
<p>
Domain Material is a curated portfolio of business domain names
focused on science, infrastructure, aerospace, AI, agentic systems,
materials, and technology.
</p>
<ul class="categories">
<li>Science Domains</li>
<li>Infrastructure Domains</li>
<li>AI & Agentic Domains</li>
<li>Aerospace & Space Domains</li>
<li>Materials Domains</li>
<li>Technology Domains</li>
</ul>
<a class="button" href="https://domainmaterial.com">
Visit DomainMaterial.com
</a>
<div class="footer">
Operated by Systems Management LLC
</div>
</div>
<script>
const rain=document.getElementById("rain");
const chars="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
for(let i=0;i<120;i++){
const span=document.createElement("span");
span.className="letter";
span.textContent=
chars[Math.floor(Math.random()*chars.length)];
span.style.left=Math.random()*100+"vw";
span.style.animationDuration=
(8+Math.random()*12)+"s";
span.style.animationDelay=
(-Math.random()*20)+"s";
span.style.fontSize=
(10+Math.random()*18)+"px";
rain.appendChild(span);
}
</script>
</body>
</html>