-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
74 additions
and
12 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>No Limit Minecarts - Minecraft Mod</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
background-color: #1a1a1a; | ||
color: #e0e0e0; | ||
line-height: 1.6; | ||
margin: 0; | ||
padding: 20px; | ||
} | ||
.container { | ||
max-width: 800px; | ||
margin: 0 auto; | ||
} | ||
h1 { | ||
color: #4caf50; | ||
text-align: center; | ||
} | ||
img { | ||
display: block; | ||
margin: 20px auto; | ||
max-width: 128px; | ||
} | ||
h2 { | ||
color: #81c784; | ||
border-bottom: 1px solid #81c784; | ||
padding-bottom: 5px; | ||
} | ||
a { | ||
color: #64b5f6; | ||
text-decoration: none; | ||
} | ||
a:hover { | ||
text-decoration: underline; | ||
} | ||
.section { | ||
background-color: #212121; | ||
padding: 15px; | ||
margin-bottom: 20px; | ||
border-radius: 5px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<img src="/assets/nlm-icon-128-r.png" alt="No Limit Minecarts Icon"> | ||
<h1>No Limit Minecarts</h1> | ||
|
||
<div class="section"> | ||
<p>24w33a Fabric Mod that removes limits for gamerule <code>maxMinecartSpeed</code></p> | ||
</div> | ||
|
||
<div class="section"> | ||
<h2>Downloads</h2> | ||
<p>Download from <a href="https://github.com/nosqd/no-limit-minecarts/releases" target="_blank">github releases</a></p> | ||
</div> | ||
|
||
<div class="section"> | ||
<h2>Why are minecarts slow when speed is max?</h2> | ||
<p>I've noticed that speed of minecart is kind of limited when there are no passengers.</p> | ||
</div> | ||
|
||
<div class="section"> | ||
<h2>Contributing</h2> | ||
<p>Feel free to contribute, anything, like anything this project started tonight to just have fun with the new update.</p> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |