Skip to content

Commit

Permalink
d
Browse files Browse the repository at this point in the history
  • Loading branch information
Genarcy authored Oct 21, 2024
1 parent 8fd2e43 commit b0aac5d
Showing 1 changed file with 109 additions and 96 deletions.
205 changes: 109 additions & 96 deletions static/game/cookies-now.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,121 +2,136 @@
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9NKTRDWECG"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9NKTRDWECG"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-9NKTRDWECG');
</script>
gtag('config', 'G-9NKTRDWECG');
</script>
<title>Genarcy</title>
<link href="/css/navbar.css" rel="stylesheet" type="text/css" />
<link href="/css/game.css" rel="stylesheet" type="text/css" />
<script src="https://kit.fontawesome.com/b314b192d4.js" crossorigin="anonymous"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;700&display=swap');

* {
margin: 0;
padding: 0;
}

body {
font-family: 'Exo 2', sans-serif;
margin: 0; /* Reset default margin */
margin: 0;
}

.card {
background-color: #0C134F;
border: 1px solid #ddd;
box-shadow: 0px 0px 5px #ddd;
padding: 20px;
width: 150px;
height: 220px;
text-align: center;
font-size: 16px;
margin: 10px;
padding: 10px;
border-radius: 5px;
display: inline-block;
color: #333;
margin-bottom: 20px;
float: left;
margin-right: 20px;
border-radius: 10px;
transform: scale(1);
transition: transform 0.2s ease-in-out;
overflow: hidden;
box-sizing: border-box;
text-decoration: none;
}
.card {
background-color: #0C134F;
border: 1px solid #ddd;
box-shadow: 0px 0px 5px #ddd;
padding: 20px;
width: 150px;
height: 220px;
text-align: center;
font-size: 16px;
margin: 10px;
padding: 10px;
border-radius: 5px;
display: inline-block;
color: #333;
margin-bottom: 20px;
float: left;
margin-right: 20px;
border-radius: 10px;
transform: scale(1);
transition: transform 0.2s ease-in-out;
overflow: hidden;
box-sizing: border-box;
text-decoration: none;
}

.card img {
max-width: 100%;
max-height: 80%;
object-fit: contain;
margin-bottom: 10px;
border-radius: 10px;
transition: transform 0.2s ease-in-out;
}
.card img {
max-width: 100%;
max-height: 80%;
object-fit: contain;
margin-bottom: 10px;
border-radius: 10px;
transition: transform 0.2s ease-in-out;
}

.card h2 {
margin-top: 0;
font-size: 18px;
color: #D4ADFC;
margin-bottom: 5px;
}
.card h2 {
margin-top: 0;
font-size: 18px;
color: #D4ADFC;
margin-bottom: 5px;
}

.card p {
margin-bottom: 0;
font-size: 16px;
color: #D4ADFC;
height: 30%;
}
.card p {
margin-bottom: 0;
font-size: 16px;
color: #D4ADFC;
height: 30%;
}

.card:before {
content: '';
position: absolute;
top: -10px;
left: -10px;
width: calc(100% + 20px);
height: calc(100% + 20px);
z-index: -1;
border-radius: 15px;
background-image: linear-gradient(to bottom right, #494F55, #666362, #0C0404, #000000);
transition: transform 0.2s ease-in-out;
transform-origin: 0% 0%;
box-sizing: border-box;
}
.card:before {
content: '';
position: absolute;
top: -10px;
left: -10px;
width: calc(100% + 20px);
height: calc(100% + 20px);
z-index: -1;
border-radius: 15px;
background-image: linear-gradient(to bottom right, #494F55, #666362, #0C0404, #000000);
transition: transform 0.2s ease-in-out;
transform-origin: 0% 0%;
box-sizing: border-box;
}

.card:hover:before {
transform: scale(1.1);
}
.card:hover:before {
transform: scale(1.1);
}

.card-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
perspective: 1000px;
}
.card-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
perspective: 1000px;
}

.card {
transform-style: preserve-3d;
transition: transform 0.5s;
}
.card {
transform-style: preserve-3d;
transition: transform 0.5s;
}

.card:hover {
transform: scale(1.1) translate(-10px, -10px);
z-index: 1;
cursor: pointer;
text-decoration: none;
}
.card:hover {
transform: scale(1.1) translate(-10px, -10px);
z-index: 1;
cursor: pointer;
text-decoration: none;
}

iframe {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
border: none;
margin: 0;
padding: 0;
overflow: hidden;
z-index: 999999;
}
</style>
</head>
<body>
<!--NavBar-->
<!-- NavBar -->
<nav class="navbar">
<a href="index.html" style="text-decoration: none;">
<div class="navbar-logo">Genarcy</div>
Expand All @@ -130,15 +145,13 @@
<div class="navbar-links" id="navbarLinks">
<a href="index.html" class="fa-solid fa-house"></a>
<a href="game.html" class="fa-solid fa-gamepad"></a>


</div>
</div>
</nav>
<!--end of navbar 0RCA-->
</head>
<body>
<iframe src="/Pages/games/cookie-clicker/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
</iframe>
<!-- End of Navbar -->

<!-- iframe for the game -->
<iframe src="/Pages/games/basketball-stars/index.html"></iframe>

</body>
</html>

0 comments on commit b0aac5d

Please sign in to comment.