Skip to content

Commit c648aa2

Browse files
committed
Add a placeholder for until the site is ready
1 parent d156584 commit c648aa2

File tree

2 files changed

+59
-0
lines changed

2 files changed

+59
-0
lines changed

index.html

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<link rel="preconnect" href="https://fonts.googleapis.com">
8+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9+
<link href="style.css" rel="stylesheet">
10+
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap"
11+
rel="stylesheet">
12+
<link rel="stylesheet"
13+
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=hourglass_empty" />
14+
<title>nsh07</title>
15+
16+
<body style="background-color: #1a1a1a;">
17+
<div class="brand-gradient">
18+
<p style="text-align: center; margin: -64px;">
19+
<span class="material-symbols-outlined" style="font-size: 100px;">
20+
hourglass_empty
21+
</span>
22+
</p>
23+
<p class="centered-huge-p">
24+
Coming soon...
25+
</p>
26+
</div>
27+
</body>
28+
29+
</html>

style.css

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/* Centering styles, will be removed later */
2+
html,
3+
body {
4+
height: 100%;
5+
}
6+
7+
html {
8+
display: table;
9+
margin: auto;
10+
}
11+
12+
body {
13+
display: table-cell;
14+
vertical-align: middle;
15+
}
16+
17+
.centered-huge-p {
18+
text-align: center;
19+
font-family: 'JetBrains Mono', monospace;
20+
font-optical-sizing: auto;
21+
font-style: normal;
22+
font-size: 4em;
23+
font-weight: 500;
24+
}
25+
26+
.brand-gradient {
27+
background: linear-gradient(45deg, #25f5f5, #AD22CF);
28+
color: transparent;
29+
background-clip: text;
30+
}

0 commit comments

Comments
 (0)