We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 7a7f1c0Copy full SHA for 7a7f1c0
CNAME
@@ -0,0 +1,2 @@
1
+threejsfundamentals.org
2
+
index.html
@@ -0,0 +1,31 @@
+<style>
+* {
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