Skip to content

Commit dafc3d8

Browse files
test
1 parent a15549a commit dafc3d8

6 files changed

Lines changed: 26 additions & 41 deletions

File tree

css/index.css

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -6,32 +6,12 @@ body {
66
padding: 0;
77
}
88

9-
::-webkit-scrollbar {
10-
width: 10px;
11-
}
12-
13-
::-webkit-scrollbar-track {
14-
background-color: #212121;
15-
}
16-
17-
::-webkit-scrollbar-thumb {
18-
background: #888;
19-
}
20-
21-
::-webkit-scrollbar-thumb:hover {
22-
background: rgb(88, 88, 88);
23-
}
24-
25-
::-webkit-scrollbar-thumb:active {
26-
background: rgb(56, 56, 56);
27-
}
28-
299
*{
3010
margin: 0;
3111
padding: 0;
3212
list-style: none;
3313
text-decoration: none;
34-
font-family: 'Open Sans', sans-serif;
14+
font-family: 'Press Start 2P';
3515
}
3616

3717
.wrapper {

css/style.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,8 @@
66
z-index: -10;
77
top: 0;
88
left: 0;
9+
}
10+
11+
body {
12+
background-color: #000000;
913
}

index.html

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,20 @@
22
<html lang="en">
33

44
<head>
5-
<meta charset="UTF-8">
6-
<meta name="viewport" content="width=device-width, initial-scale=1">
7-
<title>Jet Yeh's</title>
8-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
9-
<link rel="stylesheet" href="css/style.css">
10-
<link rel="stylesheet" href="css/index.css">
11-
<link rel="stylesheet" href="css/gameGrid.css">
12-
<link rel="stylesheet" href="css/seasonal.css">
13-
<link rel='icon' href="img/favicon-32x32.png">
14-
<meta name="description"
15-
content="Play free unblocked games anytime and anywhere! Enjoy a wide selection of fun, exciting, and safe games for school or work">
5+
<meta charset="UTF-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1" />
7+
<title>Jet Yeh's</title>
8+
<meta name="description" content="Play free unblocked games anytime and anywhere! Enjoy a wide selection of fun, exciting, and safe games for school or work">
9+
<link rel="icon" href="img/favicon-32x32.png" />
10+
<link rel="stylesheet" href="css/style.css" />
11+
<link rel="stylesheet" href="css/index.css" />
12+
<link rel="stylesheet" href="css/gameGrid.css" />
13+
<link rel="stylesheet" href="css/seasonal.css" />
1614
</head>
1715

1816
<body>
1917
<div id="loading-bar"></div>
18+
2019
<div class="wrapper">
2120
<div class="sidebar">
2221
<h2>Jet Yeh's</h2>
@@ -69,6 +68,7 @@ <h1>
6968
</header>
7069
<br>
7170
</div>
71+
7272
<ul id="navbar">
7373
<div class="search-bar" style="margin-top: -25px">
7474
<input type="text" name="search" value="" autocomplete="off" id="myinput" onkeyup="searchFunction()"
@@ -86,21 +86,22 @@ <h1>
8686
<li class="nav"><button name="multi" onclick="switchGame('multi');"
8787
class="selectButton selectable">Multiplayer</button></li>
8888
</ul>
89+
8990
<div class="bodyMain">
90-
<div>
91-
<div class="main">
92-
<div class="row" id="game-container"></div>
93-
<script src="js/games.js"></script>
94-
<script src="js/renderGames.js"></script>
95-
</div>
91+
<div class="main">
92+
<div class="row" id="game-container"></div>
93+
<script src="js/games.js"></script>
94+
<script src="js/renderGames.js"></script>
9695
</div>
9796
<div id="progress">
9897
<span id="progress-value"></span>
9998
</div>
10099
</div>
100+
101101
<script src="js/disguise.js"></script>
102102
<script type="text/javascript" src="js/main.js"></script>
103103
<script type="text/javascript" src="js/seasonal.js"></script>
104+
104105
</body>
105106
<div id="tsparticles"></div>
106107
<script src="https://cdn.jsdelivr.net/npm/tsparticles@3.8.1/tsparticles.bundle.min.js"></script>

js/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,4 +166,4 @@ function typeEffect(text, elementId, delay) {
166166
type();
167167
}
168168

169-
fetchQuotes();
169+
fetchQuotes();

js/renderGames.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ games.forEach((game, index) => {
2020
div.style.transitionDelay = delay + "ms";
2121

2222
div.innerHTML = `
23-
<a class="blogLink" href="${game.link}">
23+
<a href="${game.link}">
2424
<div class="content">
2525
<img loading="lazy" src="${game.img}" alt="${game.name}" style="width:100%">
2626
<h4>${game.name}</h4>

js/seasonal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* - The user's preference is saved using localStorage.
88
* - Applies seasonal styling and dynamically loads related particle effects (e.g., snow).
99
* - Updates the site icon based on the current theme and time of year.
10-
*/
10+
*/
1111

1212
document.addEventListener('DOMContentLoaded', () => {
1313
console.log("Seasonal script initialized");

0 commit comments

Comments
 (0)