Skip to content

Commit

Permalink
New README.md fix
Browse files Browse the repository at this point in the history
  • Loading branch information
odtheking committed Feb 24, 2024
1 parent e828825 commit a41f5e2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion script.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function parseReadmeContent(content) {
for (const line of lines) {
if (line.startsWith('Category')) {
// Extract the category name and store it
if (currentCategory === 'Skyblock' && line === 'Category: Dungeons') {
if (currentCategory === 'Skyblock' && line === 'Category: Dungeon') {
isCheaterCategory = true;
}
currentCategory = line.replace('Category: ', '');
Expand Down
12 changes: 8 additions & 4 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -395,14 +395,15 @@ color: #8b8b8b; /* Darken the font color */
}

/* Style for category headers */
.category-Dungeons {
.category-Dungeon {
font-size: 30px; /* Change the font size as needed */
font-weight: bold; /* You can set font weight as needed */
color: #0066cc; /* Change the color as needed */
position: relative;
user-select: none;
text-align: center;
justify-content: center;
font-family: "Inter Semi Bold", serif;
}

.category-Floor7 {
Expand All @@ -412,6 +413,7 @@ color: #8b8b8b; /* Darken the font color */
position: relative;
user-select: none;
text-align: center;
font-family: "Inter Semi Bold", serif;
}

.category-Kuudra {
Expand All @@ -421,6 +423,7 @@ color: #8b8b8b; /* Darken the font color */
position: relative;
user-select: none;
text-align: center;
font-family: "Inter Semi Bold", serif;
}

.category-Render {
Expand All @@ -430,6 +433,7 @@ color: #8b8b8b; /* Darken the font color */
position: relative;
user-select: none;
text-align: center;
font-family: "Inter Semi Bold", serif;
}

.category-Skyblock {
Expand All @@ -439,8 +443,7 @@ color: #8b8b8b; /* Darken the font color */
position: relative;
user-select: none;
text-align: center;


font-family: "Inter Semi Bold", serif
}

/* Style for module names */
Expand All @@ -449,6 +452,7 @@ color: #8b8b8b; /* Darken the font color */
font-weight: bold; /* You can set font weight as needed */
color: #ffffff; /* Change the color as needed */
transition: font-size 0.2s ease; /* Add a smooth transition effect */
font-family: Inter, serif;

/* Add other font-related properties if necessary */
}
Expand All @@ -463,7 +467,7 @@ color: #8b8b8b; /* Darken the font color */
font-size: 17px; /* Change the font size as needed */
font-weight: lighter; /* You can set font weight as needed */
color: #ffffff9a; /* Change the color as needed */

font-family: Inter, serif;
}


Expand Down

0 comments on commit a41f5e2

Please sign in to comment.