diff --git a/Icons/cart.png b/Icons/cart.png new file mode 100644 index 0000000..4c4cede Binary files /dev/null and b/Icons/cart.png differ diff --git a/Icons/copyright.png b/Icons/copyright.png new file mode 100644 index 0000000..3692dea Binary files /dev/null and b/Icons/copyright.png differ diff --git a/Icons/explore.png b/Icons/explore.png new file mode 100644 index 0000000..f51373e Binary files /dev/null and b/Icons/explore.png differ diff --git a/Icons/explore2.png b/Icons/explore2.png new file mode 100644 index 0000000..3a4738a Binary files /dev/null and b/Icons/explore2.png differ diff --git a/Icons/help.png b/Icons/help.png new file mode 100644 index 0000000..6c77d9d Binary files /dev/null and b/Icons/help.png differ diff --git a/Icons/home.png b/Icons/home.png new file mode 100644 index 0000000..5382260 Binary files /dev/null and b/Icons/home.png differ diff --git a/Icons/store.png b/Icons/store.png new file mode 100644 index 0000000..2898766 Binary files /dev/null and b/Icons/store.png differ diff --git a/index.html b/index.html index 9b02077..b8ae2c7 100644 --- a/index.html +++ b/index.html @@ -6,14 +6,29 @@ Meet Squirrel + +
+
+ +
+
+ +
+

Hi! I'm Squirrel!

I am a web developer (Is there a minimum age to be qualified? Do you need to be at least working age or age of consent in your country?) and extremely unimportant person in general. I use Linux, and that is about the most intresting thing about me. But I have made some stuff! You can see my GitHub account here, and check out all the organizations I am in alone. Like my repositories? Please put up issues for any mistakes, and if you have a suggestion, also make an issue. No, I didn't mean it that way, it's just eaisier for me to see.

-

Gold Rush

-

A simple incremental game made with JavaScript

-

You can play it here, or download the app here. You can find the GitHub repository here.

+
+

Gold Rush

+

A simple incremental game made with JavaScript

+

You can play it here, or download the app here. You can find the GitHub repository here.

+

Incremental

diff --git a/main.js b/main.js new file mode 100644 index 0000000..e69de29 diff --git a/styles.css b/styles.css index e69de29..ca9b374 100644 --- a/styles.css +++ b/styles.css @@ -0,0 +1,45 @@ +body { + font-family: Helvetica; + background-color: whitesmoke; + padding: 30px 20px 20px 20px; +} + +nav { + position: fixed; + top: 0; + left: 0; + right: 0; + background-color: #262626; + display: flex; + justify-content: center; + align-items: center; + padding: 8px; +} + +nav a { + color: #fff; + text-decoration: none; + margin: 8px; +} + +#gold-rush { + height: 100vh; + background-color: #272727; + position: relative; +} + +#gold-rush .content { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + height: 0px; + visibility: collapse; + transition: all .2s; +} + +#gold-rush:hover #gold-rush .content { + height: 100vh; + visibility: visible; +}