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

Save and Load functionality (#23)

* added save and load functionality

* disabled debug console.logs
This commit is contained in:
thelennylord 2019-03-03 23:13:47 +05:30 committed by Lars Martens
parent bc5c8741f2
commit 565427f6f1
4 changed files with 292 additions and 16 deletions

View file

@ -30,6 +30,27 @@ a{
color: #000000;
}
button {
border: 1px solid #aaa;
background-color: rgb(230, 230, 230);
border-radius: 3px;
padding: 0.5em;
}
button:hover {
cursor: pointer;
background-color: rgb(220, 220, 220);
}
button:active {
background-color: rgb(200, 200, 200);
}
button:focus {
outline:0;
}
input[type="text"], select{
border: 1px solid #aaa;
border-radius: 3px;