This commit is contained in:
Squirrel-314 2020-12-02 12:17:29 -05:00
parent aa0b71dc26
commit 20f3339a8f
8 changed files with 70 additions and 9 deletions

BIN
Images/cheese.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

BIN
Images/lamp-post.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 416 KiB

BIN
Images/library-1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 553 KiB

BIN
Images/library-2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 497 KiB

BIN
Images/library-3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

BIN
Images/style.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 KiB

View file

@ -19,7 +19,7 @@
<div class="project" id="gold-rush"> <div class="project" id="gold-rush">
<div class="content"> <div class="content">
<br> <br>
<img id="gold-rush-icon" src="Images/gold-rush-icon.png" alt=""> <img class="display-image-light" id="gold-rush-icon" src="Images/gold-rush-icon.png" alt="">
<h2>Gold Rush</h2> <h2>Gold Rush</h2>
<h4>A simple incremental game made with JavaScript</h4> <h4>A simple incremental game made with JavaScript</h4>
<p>You can play it <a href="https://squirrel-314.github.io">here</a>, or download the app <a href="download-gold-rush.html">here</a>. You can find the GitHub repository <a href="https://github.com/Squirrel-314/squirrel-314.github.io">here</a>.</p> <p>You can play it <a href="https://squirrel-314.github.io">here</a>, or download the app <a href="download-gold-rush.html">here</a>. You can find the GitHub repository <a href="https://github.com/Squirrel-314/squirrel-314.github.io">here</a>.</p>
@ -27,24 +27,30 @@
</div> </div>
<div class="project" id="incremental"> <div class="project" id="incremental">
<br> <br>
<img class="display-image-dark" src="Images/cheese.png" alt="">
<h2>Incremental</h2> <h2>Incremental</h2>
<h4>A simple incremental game template made with JavaScript, set up as a four lesson class. Please feel free to copy the code, but I'd rather you changed the theme.</h4> <h4>A simple incremental game template made with JavaScript, set up as a four lesson class. Please feel free to copy the code, but I'd rather you changed the theme.</h4>
<p>You can find the GitHub repository <a href="https://github.com/Squirrel-314/incremental">here</a>.</p> <p>You can find the GitHub repository <a href="https://github.com/Squirrel-314/incremental">here</a>.</p>
</div> </div>
<div class="project" id="style"> <div class="project" id="style">
<br> <br>
<img class="display-image-light" src="Images/style.png" alt="">
<h2>Style</h2> <h2>Style</h2>
<h4>Here we do things in <strong>style!</strong> Check out the nice CSS effects and apply them to your own websites!</h4> <h4>Here we do things in <strong>style!</strong> Check out the nice CSS effects and apply them to your own websites!</h4>
<p>You can find the GitHub repository <a href="https://github.com/Squirrel-314/style">here</a>.</p> <p>You can find the GitHub repository <a href="https://github.com/Squirrel-314/style">here</a>.</p>
</div> </div>
<div class="project" id="hillside"> <div class="project" id="hillside">
<br> <br>
<img class="display-image-dark" src="Images/lamp-post.png" alt="">
<h2>Hillside Township</h2> <h2>Hillside Township</h2>
<h4>Ours homes all have a place in our heart-and sometimes on the web! I'D LIKE TO MAKE IT ABSOLUTLY CLEAR THIS IS NOT THE NEW JERSEY HILLSIDE TOWNSHIP THIS ONE IS BETTER AND HAS A BETTER FAVICON. Now that I've made that clear, my <a href="https://github.com/PusheenMaster5">friend</a> and I made a website for our town.</h4> <h4>Ours homes all have a place in our heart-and sometimes on the web! I'D LIKE TO MAKE IT ABSOLUTLY CLEAR THIS IS NOT THE NEW JERSEY HILLSIDE TOWNSHIP THIS ONE IS BETTER AND HAS A BETTER FAVICON. Now that I've made that clear, my <a href="https://github.com/PusheenMaster5">friend</a> and I made a website for our town.</h4>
<p>You can find the GitHub repository <a href="https://github.com/hillside-township/hillside-township.github.io">here</a>.</p> <p>You can find the GitHub repository <a href="https://github.com/hillside-township/hillside-township.github.io">here</a>.</p>
</div> </div>
<div class="project" id="schoolarly-bay"> <div class="project" id="schoolarly-bay">
<br> <br>
<img class="display-image-light" src="Images/library-1.png" alt="">
<img class="display-image-light" src="Images/library-2.png" alt="">
<img class="display-image-light" src="Images/library-3.png" alt="">
<h2>The Schoolarly Bay</h2> <h2>The Schoolarly Bay</h2>
<h4>Scientific research papers! Publish research papers, read research papers, get paper cuts on research papers! Research papers for all!</h4> <h4>Scientific research papers! Publish research papers, read research papers, get paper cuts on research papers! Research papers for all!</h4>
<p>You can find the GitHub repository <a href="https://github.com/Squirrel-314/style">here</a>.</p> <p>You can find the GitHub repository <a href="https://github.com/Squirrel-314/style">here</a>.</p>

View file

@ -7,7 +7,6 @@ body {
background-color: whitesmoke; background-color: whitesmoke;
padding: 0; padding: 0;
margin: 0; margin: 0;
overflow-x: hidden;
overflow-y: scroll; overflow-y: scroll;
scroll-snap-type: y mandatory; scroll-snap-type: y mandatory;
} }
@ -127,18 +126,74 @@ Project Contents
Other Other
==================================================*/ ==================================================*/
#gold-rush-icon { @keyframes heavenly-glow {
0% {
box-shadow: none;
}
50% {
box-shadow: 5px 5px 5px whitesmoke,
5px -5px 5px whitesmoke,
-5px 5px 5px whitesmoke,
-5px -5px 5px whitesmoke;
}
100% {
box-shadow: none;
}
}
@keyframes darkness-grows {
0% {
box-shadow: none;
}
50% {
box-shadow: 5px 5px 5px #262626,
5px -5px 5px #262626,
-5px 5px 5px #262626,
-5px -5px 5px #262626;
}
100% {
box-shadow: none;
}
}
/*==================================================
Display Images
==================================================*/
.display-image-dark {
width: 150px; width: 150px;
position: absolute; position: absolute;
bottom: 30px; bottom: 30px;
right: 60px; right: 60px;
border-radius: 50%; border-radius: 50%;
transition: all .8s; animation: darkness-grows 3s infinite;
} }
#gold-rush-icon:hover { .display-image-light {
box-shadow: 5px 5px 5px whitesmoke, width: 150px;
5px -5px 5px whitesmoke, height: 150px;
-5px 5px 5px whitesmoke, position: absolute;
-5px -5px 5px whitesmoke; bottom: 30px;
right: 60px;
border-radius: 50%;
animation: heavenly-glow 3s infinite;
}
#schoolarly-bay img:nth-child(2) {
bottom: 20%;
left: 20%;
width: 175px;
height: 175px;
}
#schoolarly-bay img:nth-child(3) {
bottom: 20%;
left: 20%;
}
#schoolarly-bay img:nth-child(4) {
bottom: 20%;
left: 20%;
width: 125px;
height: 125px;
} }