-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (54 loc) · 1.3 KB
/
index.html
File metadata and controls
54 lines (54 loc) · 1.3 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
<!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">
<link rel="stylesheet" href="https://use.typekit.net/dqn8bhw.css">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<title>Aether Games</title>
<style>
body {
margin: 0px;
}
.main {
background-color: #FFEBD2;
width: 100vw;
height: 100vh;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.subtitle-text {
font-family: "paralucent-condensed", sans-serif;
font-weight: 700;
font-style: italic;
font-size: 2em;
transform: translateX(135px);
}
.logo {
width: 500px;
}
@media screen and (max-width: 800px) {
.logo {
width: 80%
}
.subtitle-text {
transform: translateX(30%);
font-size: 1.5em;
}
}
</style>
</head>
<body>
<div class="main">
<img class="logo" src="./assets/wide.png" />
<span class="subtitle-text">Coming in late 2023...</span>
</div>
</body>
</html>