Skip to content

Commit 7a7f1c0

Browse files
committed
initial commit
0 parents  commit 7a7f1c0

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

CNAME

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
threejsfundamentals.org
2+

index.html

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<style>
2+
* {
3+
box-sizing: border-box;
4+
-moz-box-sizing: border-box;
5+
}
6+
body {
7+
margin: 0;
8+
font-family: sans-serif;
9+
font-weight: bold;
10+
color: white;
11+
background-color: blue;
12+
}
13+
#page {
14+
width: 100vw;
15+
height: 100vh;
16+
display: flex;
17+
justify-content: center;
18+
align-content: center;
19+
align-items: center;
20+
}
21+
#page>h1 {
22+
font-size: 5vh;
23+
flex: 1 1 auto;
24+
text-align: center;
25+
}
26+
</style>
27+
<div id="page">
28+
<h1>...coming soon...</h1>
29+
</div>
30+
31+

0 commit comments

Comments
 (0)