-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
134 lines (118 loc) · 2.66 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
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>lola studio</title>
<meta name="description" content="Creative studio" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Space+Mono:wght@700&display=swap" rel="stylesheet">
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Organization",
"name": "lola studio",
"description": "creative studio",
"url": "https://lolastudio.github.io"
}
</script>
<style>
* {
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
body,
html,
.overlay,
.fake-body {
width: 100vw;
height: 100vh;
box-sizing: border-box;
margin: 0;
position: relative;
overflow: hidden;
background: #fafafa;
font-size: 16px;
font-family: 'Space Mono', monospace;
}
canvas {
image-rendering: -moz-crisp-edges;
image-rendering: -webkit-crisp-edges;
image-rendering: pixelated;
image-rendering: crisp-edges;
height: 100vh;
}
.overlay,
.fake-body {
position: fixed;
top: 0;
left: 0;
}
.overlay {
background: rgba(250, 250, 250, .3);
}
.fake-body {
background: transparent;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 20px;
}
.logo {
width: 50vh;
margin-top: 5vh;
max-width: 80vw;
}
.email {
margin-top: 5vh;
}
.email a {
text-decoration: none;
color: #000;
font-size: 3rem;
}
.github {
margin-top: 1vh;
}
.github a {
text-decoration: none;
color: #000;
font-size: 3rem;
}
@media only screen and (max-width: 600px) {
.email a,
.github a {
font-size: 2rem;
}
.github {
margin-top: 3vh;
}
}
</style>
</head>
<body>
<div class="overlay">
</div>
<div class="fake-body">
<img class="logo" src="logo.svg" />
<div class="email js-change">
<a target="_blank" title="mail to [email protected]" href="mailto:[email protected]">
</a>
</div>
<div class="github js-change">
<a target="_blank" title="github" href="https://github.com/lolastudio">github</a>
</div>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/three.min.js"></script>
<script src="./Vector.js"></script>
<script src="./Physics.js"></script>
<script src="./Renderer.js"></script>
<script src="./Random.js"></script>
<script src="./index.js"></script>
<script src="./links.js"></script>
</html>