commit 7fa5c00b9dba9291e23a283d713f0bf4cc3074dd Author: atlastrinity Date: Fri Dec 24 17:32:52 2021 +0000 initial upload diff --git a/index.html b/index.html new file mode 100644 index 0000000..825d7a0 --- /dev/null +++ b/index.html @@ -0,0 +1,24 @@ + + + + + + + + + +

+ Atlas_Cosmo +

+

+ a game composer +

+ + + \ No newline at end of file diff --git a/mainpage.css b/mainpage.css new file mode 100644 index 0000000..e321650 --- /dev/null +++ b/mainpage.css @@ -0,0 +1,45 @@ +html +{ + font-family: 'VT323', monospace; + background-color: rgb(43, 80, 201); +} + +h1 +{ + text-align: center; + margin-top: 45vh; + margin-bottom: 0; + font-size: 4.5rem; + + transition: margin 1s; +} + +h2 +{ + text-align: center; + margin-top: 0; + margin-bottom: 5vh; +} + + +#menu +{ + height: 50px; + text-align: center; + display: flexbox; + font-size: 0; + justify-content: space-between; + + transition: font-size 1s; +} + +#menu a +{ + transition: background-color 0.5s, color 0.5s; +} + +#menu a:hover +{ + background-color: black; + color: rgb(43, 80, 201); +} \ No newline at end of file diff --git a/titlePageLoadAnim.js b/titlePageLoadAnim.js new file mode 100644 index 0000000..c33f403 --- /dev/null +++ b/titlePageLoadAnim.js @@ -0,0 +1,4 @@ +setTimeout(() => { + document.getElementById("title").style = "margin-top: 40vh;" + document.getElementById("menu").style = "font-size: 1rem;" +}, 2500); \ No newline at end of file