diff --git a/public/home/clients/index.html b/public/home/clients/index.html index 9f489e5..50e8f6a 100644 --- a/public/home/clients/index.html +++ b/public/home/clients/index.html @@ -56,7 +56,9 @@
- +
+ +
diff --git a/public/home/game/index.html b/public/home/game/index.html index 1c60b54..247245d 100644 --- a/public/home/game/index.html +++ b/public/home/game/index.html @@ -56,7 +56,9 @@
- +
+ +
diff --git a/public/mobile/index.html b/public/mobile/index.html index fd44a5d..81fa959 100644 --- a/public/mobile/index.html +++ b/public/mobile/index.html @@ -32,7 +32,9 @@ Mobile
- +
+ +
Download Offline diff --git a/public/resources/data/mods.json b/public/resources/data/mods.json index db2bb52..607f0fa 100644 --- a/public/resources/data/mods.json +++ b/public/resources/data/mods.json @@ -139,6 +139,14 @@ ], "resourcepacks": [ + { + "id": "updated-textures-for-1-8-9", + "name": "Updated Textures for 1.8.9", + "description": "This resource pack aims to backport textures and sounds from the Texture Update and onward to Minecraft version 1.8.9.", + "author": "Arky", + "authorLink": "https://www.planetminecraft.com/member/arky/", + "source": "https://www.planetminecraft.com/texture-pack/updated-textures-for-1-8-9/" + }, { "id": "barebones-bossbars", "name": "Barebones Bossbars", diff --git a/public/resources/mods/downloads/updated-textures-for-1-8-9.zip b/public/resources/mods/downloads/updated-textures-for-1-8-9.zip new file mode 100644 index 0000000..84f0f31 Binary files /dev/null and b/public/resources/mods/downloads/updated-textures-for-1-8-9.zip differ diff --git a/public/resources/mods/icons/updated-textures-for-1-8-9.webp b/public/resources/mods/icons/updated-textures-for-1-8-9.webp new file mode 100644 index 0000000..1331706 Binary files /dev/null and b/public/resources/mods/icons/updated-textures-for-1-8-9.webp differ diff --git a/public/resources/styles/themes/default.css b/public/resources/styles/themes/default.css index b0ec0b3..0088a1b 100644 --- a/public/resources/styles/themes/default.css +++ b/public/resources/styles/themes/default.css @@ -4,6 +4,10 @@ } body { + display: flex; + flex-direction: row; + align-items: center; + justify-content: center; margin: 0; font-family: sans-serif; background-color: #1e1e1e; @@ -11,11 +15,6 @@ body { overflow: hidden; background-image: none; background-size: cover; - - display: flex; - flex-direction: row; - align-items: center; - justify-content: center; } .ads-container { @@ -133,6 +132,30 @@ nav { flex-shrink: 0; } +.top-menu ul { + list-style-type: none; + margin: 0; + padding: 0; + display: flex; +} + +.top-menu ul li { + margin-right: 20px; + cursor: pointer; + font-size: 16px; + color: #ccc; + transition: color 0.2s; +} + +.top-menu ul li.selected { + color: #fff; + font-weight: bold; +} + +.top-menu ul li:hover { + color: #fff; +} + .game-title { font-size: 18px; font-weight: bold; @@ -157,8 +180,8 @@ nav { } .main-content { - flex: 1; display: flex; + flex: 1; flex-direction: column; background-color: #202020; box-sizing: border-box; @@ -173,6 +196,12 @@ nav { flex: 1; width: 100%; height: 100%; +} + +.cover-image img { + flex: 1; + width: 100%; + height: 100%; object-fit: cover; } @@ -419,41 +448,6 @@ nav { background-color: #00cc00; } -.top-menu { - background-color: #2c2c2c; - padding: 10px 20px; - display: flex; - justify-content: space-around; - align-items: center; - color: #ddd; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - flex-shrink: 0; -} - -.top-menu ul { - list-style-type: none; - margin: 0; - padding: 0; - display: flex; -} - -.top-menu ul li { - margin-right: 20px; - cursor: pointer; - font-size: 16px; - color: #ccc; - transition: color 0.2s; -} - -.top-menu ul li.selected { - color: #fff; - font-weight: bold; -} - -.top-menu ul li:hover { - color: #fff; -} - .mod-list { display: grid; grid-template-columns: repeat(3, 1fr); @@ -480,9 +474,10 @@ nav { } .mod-item .mod-icon img { - max-width: 100%; - max-height: 100%; + width: 100%; + height: 100%; border-radius: 5px; + object-fit: cover; } .mod-item .mod-details {