-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
125 lines (116 loc) · 3.94 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web3Event.co</title>
<!-- twitter cards & og -->
<meta name="twitter:domain" content="web3event.co" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@web3eventco" />
<meta property="twitter:title" content="web3event.co" />
<meta property="twitter:description" content="coming soon.">
<meta name="twitter:image" content="https://web3event.co/img/w3e-card.png" />
<meta property="twitter:image" content="https://web3event.co/img/w3e-card.png" />
<meta name="twitter:image:width" content="592" />
<meta name="twitter:image:height" content="482" />
<meta property="og:title" content="web3event.co">
<meta property="og:type" content="blockchain">
<meta property="og:url" content="https://web3event.co/">
<meta property="og:image" itemprop="image" content="https://web3event.co/img/w3e-card.png">
<!-- icons -->
<link rel="apple-touch-icon" sizes="120x120" href="/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/icons/favicon-16x16.png">
<link rel="manifest" href="/icons/site.webmanifest">
<link rel="mask-icon" href="/icons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="/icons/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="/icons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<meta name="thumbnail" content="https://web3event.co/icons/w3e-thumbnail.jpg">
<!-- preloads -->
<link rel="preload" as="image" href="/img/w3e-logo.svg">
<link rel="preload" as="image" href="/img/logo-wordmark.svg">
<!-- fonts & stylesheets -->
<link rel="stylesheet" type="text/css" href="./reset.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@500&family=Suez+One&display=swap" rel="stylesheet">
</head>
<body>
<div class="hero">
<div class="center">
<img src="/img/w3e-logo.svg" alt="web3event logo" width='350'/>
<img src="/img/logo-wordmark.svg" alt="web3event logo" width='330'/>
<p class="soon">
<span>C</span><span>o</span><span>m</span><span>i</span><span>n</span><span>g</span>
<span>S</span><span>o</span><span>o</span><span>n</span>
</p>
<a href="mailto:team@web3event.co">team@web3event.co</a>
</div>
</div>
</body>
<style type="text/css">
html {
font-family: 'Suez One', serif;
font-style: normal;
font-weight: 400;
text-align: center;
box-sizing: border-box;
}
.hero {
height: 100vh;
position: relative;
background-image: url('/img/bg-texture.svg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.center {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
padding: 10px;
}
.center a {
font-family: 'IBM Plex Sans', sans-serif;
font-weight: 500;
font-size: 1.5rem;
text-decoration: none;
color: black;
transition: color 0.4s ease-out;
background: linear-gradient(90deg, #B84FFF 0%, #49C0FF 38.02%, #ffdb80 100%);
-webkit-background-clip: text;
background-clip: text;
}
.center a:hover {
color: transparent;
}
img {
display: block;
margin: 0.5rem auto;
}
.soon {
font-size: 2rem;
margin-bottom: 2rem;
margin-top: 4rem;
background: linear-gradient(90deg, #B84FFF 0%, #49C0FF 38.02%, #FFE49D 64.75%, #fe650c 100%);
-webkit-background-clip: text;
background-clip: text;
padding-block: 0.3rem;
text-transform: uppercase;
letter-spacing: 0.2em;
}
span {
color: black;
transition: color 0.3s ease-out;
cursor: default;
}
span:hover {
color: transparent;
}
</style>
</html>