-
Notifications
You must be signed in to change notification settings - Fork 1
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
11 changed files
with
556 additions
and
17 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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
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,182 @@ | ||
<!doctype html> | ||
<head> | ||
|
||
<meta charset="UTF-8" /> | ||
<title>Hudder wiki</title> | ||
<script> | ||
document.addEventListener("DOMContentLoaded", function (event) { | ||
document.body.style = "background-color: #202020"; | ||
}); | ||
</script> | ||
<base href="/"/> | ||
</head> | ||
<body> | ||
<style> | ||
#topbar { | ||
background-color: #101010; | ||
position: fixed; | ||
width: 100%; | ||
height: 8vh; | ||
left: 0; | ||
top: 0; | ||
} | ||
#topbar img { | ||
position: absolute; | ||
padding-top: 1.2vh; | ||
padding-left: 1.2vh; | ||
height: 80%; | ||
} | ||
#topbar #title { | ||
color: lightgray; | ||
text-align: center; | ||
padding-top: 0.8vh; | ||
font-size: 6.7vh; | ||
font-family: consolas; | ||
} | ||
#contents { | ||
position: absolute; | ||
text-align: left; | ||
color: lightgray; | ||
font-family: "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif; | ||
font-size: 20px; | ||
width: calc(79% - 3px); | ||
left: 20%; | ||
padding-top: 15vh; | ||
padding-left: 1%; | ||
text-wrap: wrap; | ||
border-left: 3px solid gray; | ||
min-height: 85vh; | ||
z-index: -1; | ||
top: 0px; | ||
} | ||
#sidebar { | ||
text-align: left; | ||
color: white; | ||
font-family: "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif; | ||
font-size: 10px; | ||
width: 20%; | ||
margin: 0px; | ||
padding-top: 10px; | ||
text-wrap: wrap; | ||
border: none; | ||
position: fixed; | ||
top: 12vh; | ||
left: 0%; | ||
} | ||
#sidebar h1 { | ||
margin: 0px; | ||
padding-left: 20px; | ||
margin-bottom: 10px; | ||
border-bottom: 3px solid aqua; | ||
} | ||
#sidebar details { | ||
font-size: 20px; | ||
} | ||
#sidebar details summary a { | ||
margin-left: -5px; | ||
} | ||
#sidebar details summary { | ||
list-style-image: url("/Images/Collapsed.png"); | ||
} | ||
#sidebar details[open] summary { | ||
list-style-image: url("/Images/Expanded.png"); | ||
} | ||
#sidebar details summary[hidebutton] { | ||
list-style: none; | ||
margin-left: 23px; | ||
} | ||
#sidebar details ul { | ||
list-style: none; | ||
margin-top: 0px; | ||
margin-bottom: 10px; | ||
margin-left: -5px; | ||
} | ||
p {margin: 10px;} | ||
h1 {margin: 0px;margin-top: 10px;margin-bottom: 10px;} | ||
h2 {margin: 0px;margin-top: 10px;margin-bottom: 10px;} | ||
a { | ||
color: #0969da; | ||
text-decoration: none; | ||
} | ||
code { | ||
display: block; | ||
font-family: monospace; | ||
border-radius: 5px; | ||
border-color: gray; | ||
border-style: solid; | ||
border-width: 1px; | ||
background-color: rgb(59, 59, 59); | ||
text-align: left; | ||
padding: 5px; | ||
white-space: pre; | ||
width: fit-content; | ||
} | ||
inline-code { | ||
font-family: monospace; | ||
border-radius: 5px; | ||
border-color: gray; | ||
border-style: solid; | ||
border-width: 1px; | ||
background-color: rgb(59, 59, 59); | ||
text-align: left; | ||
padding: 0px; | ||
margin: 0px; | ||
} | ||
note { | ||
display: inline-block; | ||
border: 0.25em solid; | ||
border-color: #0969da; | ||
padding: 5px; | ||
border-collapse: collapse; | ||
} | ||
</style> | ||
<div id="topbar"> | ||
<img src="/Images/Hudder.webp" alt="Back to main wiki page" /> | ||
<div id="title">Hudder Wiki</div> | ||
</div> | ||
<div id="sidebar"> | ||
<h1>Explore</h1> | ||
<details> | ||
<summary hidebutton> | ||
<a href="/wiki/base.html">Base.html</a> | ||
</summary> | ||
</details> | ||
<details> | ||
<summary><a href="/wiki/home.html">Tutorial</a></summary> | ||
<ul> | ||
<li><a href="/wiki/home.html#text">Normal text</a></li> | ||
<li><a href="/wiki/home.html#color">Character escaping and Color Codes</a></li> | ||
<li><a href="/wiki/home.html#sections">Text sections</a></li> | ||
<li><a href="/wiki/home.html#variables">Basic variables</a></li> | ||
<li><a href="/wiki/home.html#conditions">Basic conditions</a></li> | ||
<li><a href="/wiki/home.html#adv_variables">Advanced Variables</a></li> | ||
<li><a href="/wiki/home.html#methods">Inventory management and methods</a></li> | ||
</ul> | ||
</details> | ||
</div> | ||
<div id="contents"> | ||
<h1 id="welcome">You shouldn't be seeing this page!!!</h1> | ||
<h1 id="welcome">Welcome to the hudder wiki!</h1> | ||
|
||
Hudder is a minecraft mod which allows you to create your own, highly | ||
customizable hud without prior programming knowledge.<br /> | ||
Hudder also allows more technical people the ability to use complex | ||
tools that they may be more familiar with (like JavaScript) to make | ||
their hud.<br /> | ||
Hudder also has a variety of built-in huds that can serve as a base for | ||
your own hud as well as give you the ability to make as many huds as you | ||
may wish for. | ||
<br /><br /> | ||
|
||
Want to start simple? <a href="/home.html">Full tutorial here.</a><br /> | ||
Want to do something with JavaScript? | ||
<a href="/home.html">This might be the place to start.</a><br /> | ||
A full variable list can be found <a href="/varlist.html">here.</a | ||
><br /> | ||
A full list of methods can be found <a href="/varlist.html">here.</a | ||
><br /> | ||
|
||
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> | ||
<a id="ru" href="russian.html">Русский</a> | ||
</div> | ||
</body> |
Oops, something went wrong.