-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCreateNewWorldPage.html
More file actions
34 lines (34 loc) · 1.12 KB
/
CreateNewWorldPage.html
File metadata and controls
34 lines (34 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<style>
:host {
background-image: var(--mc-ui-background-darken-img);
background-repeat: repeat;
background-size: auto;
text-align: center;
}
mc-input {
width: 46.5%;
min-width: min(100%, 23ch);
box-sizing: border-box;
display: block;
margin: 10px auto;
padding: 1.5ex 1ch;
text-align: start;
border-color: #aaa;
}
.gen-options, .bottom-tools, mc-button {
margin-top: 10px;
}
</style>
<div class="container">
<h1>Create New World</h1>
<mc-input id="world-name" placeholder="Enter World Name, Default 'My World'"></mc-input>
<mc-input id="world-seed" placeholder="World Seed, Empty for Random"></mc-input>
<div class="gen-options">
<mc-button id="world-type-btn">World Type: <span id="world-type-echo">Normal</span></mc-button>
<mc-button disabled>Trees: <span id="tree-echo">On</span></mc-button>
</div>
<div class="bottom-tools">
<mc-button id="create-new-word">Create New World</mc-button>
<mc-button gotoPage="*pop">Cancel</mc-button>
</div>
</div>