-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (64 loc) · 1.64 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Elevatebox | Coming Soon</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
--s: 300px; /* control the size*/
--c1: #2e3138;
--c2: #121721;
--c3: #3b3e45;
background:
repeating-conic-gradient(
from 30deg,
#0000 0 120deg,
var(--c3) 0 180deg
)
calc(0.5 * var(--s)) calc(0.5 * var(--s) * 0.577),
repeating-conic-gradient(
from 30deg,
var(--c1) 0 60deg,
var(--c2) 0 120deg,
var(--c3) 0 180deg
);
background-size: var(--s) calc(var(--s) * 0.577);
}
body {
padding: 1rem;
height: 100vh;
width: 100vw;
display: grid;
place-items: center;
color: #fff;
font-family: Arial, Helvetica, sans-serif;
}
main {
text-align: center;
background-olor: radial-gradient(circle, #0000, #000000af);
padding: 2rem;
border-radius: 1rem;
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
border: 1px solid #fff4;
backdrop-filter: blur(5px);
}
h1 {
line-height: 1.5;
margin-bottom: 1rem;
}
</style>
</head>
<body>
<main>
<h1>We're cooking up something amazing for you!</h1>
<p>Stay tuned for our launch.</p>
</main>
<!-- <p>Designed with ❤️ by Speranxa</p> -->
</body>
</html>