Create the initial welcome screen
This commit is contained in:
parent
5e4b97bcc7
commit
5c84c35b05
26
index.html
26
index.html
@ -176,6 +176,16 @@
|
|||||||
width: 4em;
|
width: 4em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.or {
|
||||||
|
font-weight: bold;
|
||||||
|
text-transform: uppercase;
|
||||||
|
margin: .5em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#character-roster-container {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
#no-loaded-container {
|
#no-loaded-container {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
@ -238,6 +248,14 @@
|
|||||||
.input-unlocker:checked + label .input-unlocked {
|
.input-unlocker:checked + label .input-unlocked {
|
||||||
display: initial;
|
display: initial;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#btn-load-character {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#btn-create-character {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
@ -253,8 +271,14 @@
|
|||||||
Cypher Player Assistant
|
Cypher Player Assistant
|
||||||
<span id="no-local-storage" title="Local Storage is not available. You can import/export data, but the app won’t save it between sessions!">!</span>
|
<span id="no-local-storage" title="Local Storage is not available. You can import/export data, but the app won’t save it between sessions!">!</span>
|
||||||
</h1>
|
</h1>
|
||||||
|
<div id="character-roster-container" class="box">
|
||||||
|
<select id="character-roster"><option></option></select>
|
||||||
|
<button id="btn-load-character">Load Character</button>
|
||||||
|
<button id="btn-create-character">Create Character</button>
|
||||||
|
</div>
|
||||||
<div id="no-loaded-container" class="box">
|
<div id="no-loaded-container" class="box">
|
||||||
No character is loaded.<br>
|
No character is loaded. Load one from the menu above
|
||||||
|
<div class="or">— or —</div>
|
||||||
<button id="btn-no-char-create-character">Create one</button>
|
<button id="btn-no-char-create-character">Create one</button>
|
||||||
</div>
|
</div>
|
||||||
<div id="character-container">
|
<div id="character-container">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user