-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (101 loc) · 3.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>toast</title>
<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">
<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=Jersey+10&display=swap" rel="stylesheet">
<meta name="author" content="@lightly-toasted">
<meta name="description" content="perfect 🍞🍞🍞🍞">
<meta name="title" content="toast's toast">
<meta name="theme-color" content="#daa520">
<meta property="og:title" content="toast's toast" />
<meta property="og:description" content="perfect 🍞🍞🍞🍞" />
<meta property="og:image" content="https://lightly-toasted.github.io/android-chrome-192x192.png" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="@lightly-toasted" />
<script type="importmap">
{
"imports": {
"three": "https://cdn.jsdelivr.net/npm/three@latest/build/three.module.js",
"three/addons/": "https://cdn.jsdelivr.net/npm/three@latest/examples/jsm/"
}
}
</script>
<style>
body {
background-color: skyblue;
}
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
#message {
position: absolute;
height: 100%;
width: 100%;
z-index: 100;
display: flex;
justify-content: center;
align-items: center;
font-family: "Jersey 10", sans-serif;
font-style: normal;
font-size: 64px;
top: calc(-150px);
color: white;
opacity: 0.5;
z-index: -1;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
@media (min-width: 768px) {
#message {
font-size: 128px;
}
}
@media (min-width: 1280px) {
#message {
font-size: 192px;
}
}
@media (min-width: 1440px) {
#message {
font-size: 256px;
}
}
#github {
position: absolute;
left: 50%;
top: 60%;
transform: translate(-50%, -50%);
z-index: 100;
display: flex;
font-family: "Jersey 10", sans-serif;
font-style: normal;
font-size: 32px;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
color: white;
opacity: 0.5;
}
</style>
</head>
<body>
<div id="message">hold...</div>
<a onclick="return false" ondblclick="location=this.href" id="github" href="https://github.com/lightly-toasted">@lightly-toasted</a>
<script src="main.js" type="module"></script>
</body>
</html>