Link to the luacontroller documentation

master
Jeija 2013-02-12 12:49:52 +01:00
parent f3c5cc9427
commit 5202a2daa7
3 changed files with 27 additions and 5 deletions

View File

@ -57,6 +57,7 @@
<a id="item" href="items/removestone.php" title="Removestone">
<img src = "textures/removestone.png"><div id="name">Removestone</div></a>
<a id="item" href="items/ghoststone.php" title="Ghoststone">
<img src = "textures/ghoststone.png"><div id="name">Ghoststone</div></a>
<a id="item" href="items/commandblock.php" title="Command Block">
<img src = "textures/commandblock.png"><div id="name">Command Block</div></a>
@ -73,7 +74,7 @@
<img src = "textures/lightstone_blue.png"><div id="name">Blue</div></a>
<hr />
<div class="paragraph-heading">Logic</div>
<a id="item" href="items/luacontroller.php" title="Luacontroller">
<a id="item" class="featured" href="items/luacontroller.php" title="Luacontroller">
<img src = "textures/luacontroller.png"><div id="name">Luacontroller</div></a>
<a id="item" href="items/microcontroller.php" title="Microcontroller (deprecated)">
<img src = "textures/microcontroller.png"><div id="name">Microcontroller</div></a>

View File

@ -8,12 +8,13 @@
<br/>
<div class = "paragraph-heading">Description</div>
<div class = "text">
<p>
The luacontroller is an advanced programmable component.<br/>
You can simply code it in the language mesecons uses itself: Lua!<br/>
All the code runs in a sandbox, so it's completely safe (no warranty anyway)<br/>
</p>
<b>This is not completely finished, documentation is missing.<br/>
Use the microcontroller instead meanwhile.</b>
<a href="/luacontroller" id="doculink">Documentation>>></a>
</div>
</div>
<?php include "../footer.html";?>

View File

@ -91,6 +91,7 @@ margin: 0 0;}
margin-right:auto;
margin-left:auto;
width:93%;
max-width:1000px;
}
#article .article-heading {
@ -104,11 +105,25 @@ margin: 0 0;}
}
#article a{
color: #827f00;
color: #505c00;
}
#article a:hover, a:active {
color: #ffff00;
color: #aaaa00;
}
#article #doculink {
color:#404c00;
font-size:2.5em;
border:2px solid #505c00;
text-decoration:none;
background-color:#cccccc;
border-radius:8px;
}
#article #doculink:hover {
color: #777700;
border-color:#aaaa00;
}
#article .text {
@ -140,6 +155,11 @@ margin: 0 0;}
height:140px;
}
#article #items #item.featured {
background: #999900;
border-color:#999900;
}
#article #items #item #name {
font-size:1.02em;
font-weight:bold;