Skip to content

Commit bec5144

Browse files
committed
More refinements
1 parent e9ade54 commit bec5144

File tree

2 files changed

+41
-3
lines changed

2 files changed

+41
-3
lines changed

plugins/template/tools/onlinemodmaker.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77
<style>
88
/* CSS styles for the dropdown menu and text area */
9+
html {
10+
width: 95%;
11+
}
912
body {
1013
font-family: monospace;
1114
background-color: rgba(0, 0, 0, 0.2);
@@ -68,6 +71,12 @@
6871
code {
6972
word-break: break-all;
7073
}
74+
@media (max-width: 400px) {
75+
html {
76+
width: 93%;
77+
}
78+
/* wyndchyme was here. Don't ask. */
79+
}
7180
</style>
7281
</head>
7382
<body>

tools/index.html

Lines changed: 32 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
width: calc(100% - 6vw);
6969
left: 1.5vw;
7070
line-height: 1.5;
71+
padding-bottom: 100px;
7172
}
7273
.toolsBody ul {
7374
list-style-type: disc;
@@ -104,6 +105,25 @@
104105
transform: scale(1.02);
105106
filter: brightness(1.1);
106107
}
108+
.banner {
109+
position: fixed;
110+
left: 0;
111+
bottom: 0;
112+
width: 100%;
113+
height: fit-content;
114+
padding: 5px;
115+
background: linear-gradient(rgba(255, 100, 0, 0.7), rgba(255, 102, 0, 0.7)), url(/img/bg/chiseled_quartz_block_top.png);
116+
display: flex;
117+
align-items: center;
118+
justify-content: center;
119+
z-index: 999;
120+
font-family: 'Minecraft Regular';
121+
font-size: 14pt;
122+
color: #220d04;
123+
background-size: 32px;
124+
image-rendering: pixelated;
125+
}
126+
107127
</style>
108128
</head>
109129
<body>
@@ -192,7 +212,7 @@
192212
<span class="bulletHeader">
193213
<img src="/img/gui/oreui/behaviorpacks.png">Main Tools
194214
</span>
195-
<li><a href="https://github.com/Cracko298/CombinedAudioTool">CombinedAudioTool (CATool)</a></li>
215+
<li><a href="https://github.com/Cracko298/CombinedAudioTool">CATool</a></li>
196216
<li><a href="https://github.com/STBrian/MC3DS-Texture-Maker">MC3DS Texture Maker</a></li>
197217
<li><a href="https://github.com/MC3DS-Save-Research/3DS-Chunker">3DS Chunker</a></li>
198218
<li><a href="https://github.com/Cracko298/3DS-Chunker-GUI">3DS Chunker GUI</a></li>
@@ -232,19 +252,27 @@
232252
<li><a href="https://github.com/BJTMastermind/MC3dst-Parser">MC3DST Parser</a></li>
233253
<li><a href="https://github.com/STBrian/pyBjson">pyBjson</a></li>
234254
</ul>
235-
<ul>
255+
<ul style="padding-bottom: 100px;">
236256
<span class="bulletHeader">
237257
<img src="/img/gui/oreui/resourcepacks.png">Other
238258
</span>
239259
<li><a href="/tools/onlinemodmaker/">Online Mod Maker</a></li>
240260
<li><a href="/tools/negativeseed/">Negative Seed Calculator</a></li>
241261
<li><a href="/tools/blockstomegabytes/">Blocks to Megabytes Calculator</a></li>
262+
<li><a href="https://pizza-beep.github.io/MegaPack-seed-picker/">MegaPack Seed Picker</a></li>
242263
</ul>
243264
</div>
265+
</div>
266+
267+
268+
</div>
244269

245270

246271

247-
272+
<div class="banner">
273+
Tools linked on this page belong to their respective owners.
274+
</div>
275+
248276
<script src="/scripts/main/dropdown.js"></script>
249277
<script src="/scripts/main/vines.js"></script>
250278
<script src="/scripts/main/header.js"></script>
@@ -257,5 +285,6 @@
257285

258286
</script>
259287

288+
260289
</body>
261290
</html>

0 commit comments

Comments
 (0)