diff --git a/HOMEPAGE MOCKUP.png b/HOMEPAGE MOCKUP.png new file mode 100644 index 0000000..0eb3639 Binary files /dev/null and b/HOMEPAGE MOCKUP.png differ diff --git a/Landing Page.html b/Landing Page.html new file mode 100644 index 0000000..e1b0b34 --- /dev/null +++ b/Landing Page.html @@ -0,0 +1,26 @@ + + + + WELCOME TO DALMATIONER.ART + + + + + + + + +
+
+ clouds + skull + more +

Welcome to Dalmationer.Art.

+

ENTER→

+ +
+
+ + + + \ No newline at end of file diff --git a/dalm site test.png b/dalm site test.png new file mode 100644 index 0000000..4f64cbb Binary files /dev/null and b/dalm site test.png differ diff --git a/dalmsite workspace.code-workspace b/dalmsite workspace.code-workspace new file mode 100644 index 0000000..d60dc64 --- /dev/null +++ b/dalmsite workspace.code-workspace @@ -0,0 +1,3 @@ +{ + "folders": [] +} \ No newline at end of file diff --git a/landingstyles.css b/landingstyles.css new file mode 100644 index 0000000..6d22baf --- /dev/null +++ b/landingstyles.css @@ -0,0 +1,91 @@ + +body{ + background-color:black; + height: 100%; + margin: 0; +} + +html{ + height: 100%; + margin: 0; +} + +img{ + image-rendering: "pixelated"; +} + +#bg-image-container{ + background-image: url("./images/islandbg.png"); + /* Full height */ + height: 100%; + + /* Center and scale the image nicely */ + background-position: center; + background-repeat: no-repeat; + background-size: cover; + overflow: hidden +} + +#bg-clouds-container{ + height: 100%; + position: relative; +} + +#bg-clouds{ + justify-content: center; + height: 100%; + animation-name: "cloudloop"; + animation-duration: 60s; + animation-iteration-count: infinite; + animation-timing-function: linear; + position: absolute; + left: 0%; + top: 0px; + z-index: 0; +} + +#skull{ + height: 100%; + position: absolute; + left: 50%; + transform: translateX(-50%); + z-index: 1; +} + +#fg-clouds{ + justify-content: center; + height: 100%; + position: absolute; + left: 50%; + transform: translateX(-80%); + z-index: 2; + animation-name: "cloudloop2"; + animation-duration: 40s; + animation-iteration-count: infinite; + animation-timing-function: linear; + position: "absolute"; +} + +#welcome-container{ + position: absolute; + color: coral; + margin-top: 10%; + margin-left: 50%; + margin-right:15%; + border: coral 1px solid; + padding-left: 1%; + padding-right: 1%; + z-index: 3; + font-size: 100%; + +} + +@keyframes cloudloop{ + 0% {transform: translate(120%);} + 100% {transform: translate(-120%);} +} + +@keyframes cloudloop2{ + 0% {transform: translate(-140%);} + 100% {transform: translate(140%);} +} \ No newline at end of file