Gregg Tavares 7 éve
szülő
commit
52a2cd52aa
2 módosított fájl, 33 hozzáadás és 0 törlés
  1. 2 0
      CNAME
  2. 31 0
      index.html

+ 2 - 0
CNAME

@@ -0,0 +1,2 @@
+threejsfundamentals.org
+

+ 31 - 0
index.html

@@ -0,0 +1,31 @@
+<style>
+* {
+    box-sizing: border-box;
+   -moz-box-sizing: border-box;
+}
+body {
+    margin: 0;
+    font-family: sans-serif;
+    font-weight: bold;
+    color: white;
+    background-color: blue;
+}
+#page {
+    width: 100vw;
+    height: 100vh;
+    display: flex;
+    justify-content: center;
+    align-content: center;
+    align-items: center;
+}
+#page>h1 {
+    font-size: 5vh;
+    flex: 1 1 auto;
+    text-align: center;
+}
+</style>
+<div id="page">
+<h1>...coming soon...</h1>
+</div>
+
+