1
0
Fork 0
mirror of https://github.com/haselkern/Minecraft-ArmorStand.git synced 2025-05-18 05:55:35 +00:00

Easy way to edit equipment

This commit is contained in:
haselkern 2014-08-19 19:16:53 +02:00
parent baa78e919f
commit 906eba120f
3 changed files with 115 additions and 10 deletions

View file

@ -1,6 +1,6 @@
html, body{
height: 100%;
font-family: Arial;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
@ -30,6 +30,13 @@ a{
color: #000000;
}
/* We cheat a bit here to fit all the controls in one row.
I will add a proper workaround later.
*/
.evenly *{
width: 24%;
}
#gl{
width: 60%;
height: 100%;
@ -54,4 +61,8 @@ a{
font-family: monospace;
background-color: #37474f;
color: #ffffff;
}
#customequipment input[type=text]{
width: 100%;
}