Added instruction page

master
byYottaFLOPS 2017-02-04 20:33:04 +01:00
parent 68963a0dd6
commit 4530cd215d
2 changed files with 39 additions and 0 deletions

22
instructions.css Normal file
View File

@ -0,0 +1,22 @@
.instruction_header {
position: relative;
top: 0;
left: 0;
height: 100px;
margin-top: 20px;
width: 100%;
}
.instruction_content {
width: 90%;
position: relative;
left: 5%;
top: 20px;
padding: 40px;
margin: 0;
background-color: #EEEEEE;
font-family: "Segoe UI", Arial, sans-serif;
font-size: 23px;
color: #222;
box-sizing: border-box;
}

17
instructions.html Normal file
View File

@ -0,0 +1,17 @@
<html>
<head>
<link rel="stylesheet" href="main.css"/>
<link rel="stylesheet" href="instructions.css"/>
</head>
<body>
<div class="instruction_header">
<h1>Modinstaller</h1>
</div>
<div class="instruction_content">
<h2>Instructions</h2>
Left-click name to view info<br><br>
Right- or double-click name to enable a mod<br>
</div>
</body>
</html>