Skip to content

Commit

Permalink
Add planetesimals
Browse files Browse the repository at this point in the history
  • Loading branch information
MythicalTrashcan committed Sep 1, 2023
1 parent 9aac970 commit 10a8216
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 10 deletions.
5 changes: 5 additions & 0 deletions projects/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ <h2>
N-Gon (Old)
</a>
</h2>
<h2>
<a class="planet" href="Games/planetesimals/index.html">
Planetesimals
</a>
</h2>
<h2>
<a class="cookie-clicker" href="Games/cookie-clicker/index.html">
Cookie Clicker
Expand Down
58 changes: 48 additions & 10 deletions projects/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
background-color: #4d4d4d;
color: rgb(255, 255, 255);
background-image: linear-gradient(to top, #1f1f1f, #3b3b3c, #595a5c, #787b7d, #989ea0);
height: 2200px;
height: 2300px;
}

.ludosLogo {
Expand Down Expand Up @@ -214,6 +214,20 @@ h3 {
}


/* Planetesimals */

.planet:hover {
background-color: #dbd818;
box-shadow: 6px 4px 4px 2px #667c06;
border-color: #97a709;
transform: scale(0.95);
}

.planet:active {
transform: scale(0.97);
}


/* Cookie Clicker */

.cookie-clicker:hover {
Expand Down Expand Up @@ -462,10 +476,34 @@ h3 {
}


/* Planetesimals */

.planet {
top: 800px;
display: block;
width: 1000px;
position: absolute;
background-color: #10c729;
border-style: solid;
border-color: #068a27;
box-shadow: inset;
box-shadow: 6px 4px 4px 2px #067c0c;
cursor: pointer;
transition: all;
padding: 15px 60px;
text-shadow: none;
color: #ffffff;
text-decoration: none;
font-size: xx-large;
border-radius: 25px;
transition: width .25s, height .25s, background-color .25s, transform .25s;
}


/* Cookie Clicker */

.cookie-clicker {
top: 800px;
top: 900px;
display: block;
width: 1000px;
position: absolute;
Expand All @@ -489,7 +527,7 @@ h3 {
/* 1v1.lol */

.vlol {
top: 900px;
top: 1000px;
display: block;
width: 1000px;
position: absolute;
Expand All @@ -513,7 +551,7 @@ h3 {
/* A Dance Fire & Ice */

.dance-fire-ice {
top: 1000px;
top: 1100px;
display: block;
width: 1000px;
position: absolute;
Expand All @@ -537,7 +575,7 @@ h3 {
/* Ten Minutes Until Dawn */

.ten-mins {
top: 1100px;
top: 1200px;
display: block;
width: 1000px;
position: absolute;
Expand All @@ -561,7 +599,7 @@ h3 {
/* 2048 */

.number-game-lol {
top: 1200px;
top: 1300px;
display: block;
width: 1000px;
position: absolute;
Expand All @@ -585,7 +623,7 @@ h3 {
/* 2048 Multitask */

.number-game-multi {
top: 1300px;
top: 1400px;
display: block;
width: 1000px;
position: absolute;
Expand All @@ -609,7 +647,7 @@ h3 {
/* 2048 Big */

.number-game-big {
top: 1400px;
top: 1500px;
display: block;
width: 1000px;
position: absolute;
Expand All @@ -633,7 +671,7 @@ h3 {
/* 1 */

.number-game-small {
top: 1500px;
top: 1600px;
display: block;
width: 1000px;
position: absolute;
Expand All @@ -657,7 +695,7 @@ h3 {
/* 1 */

.aqua-slides {
top: 1600px;
top: 1700px;
display: block;
width: 1000px;
position: absolute;
Expand Down

0 comments on commit 10a8216

Please sign in to comment.