mirror of https://github.com/sveltejs/svelte
commit
b04cada2dd
@ -0,0 +1,35 @@
|
|||||||
|
<script>
|
||||||
|
export let checked;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.input-output-toggle {
|
||||||
|
display: grid;
|
||||||
|
position: absolute;
|
||||||
|
user-select: none;
|
||||||
|
grid-template-columns: 1fr 40px 1fr;
|
||||||
|
grid-gap: 0.5em;
|
||||||
|
align-items: center;
|
||||||
|
width: 100%;
|
||||||
|
height: 42px;
|
||||||
|
border-top: 1px solid var(--second);
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.active {
|
||||||
|
color: #555;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<label class="input-output-toggle">
|
||||||
|
<span class:active={!checked} style="text-align: right">input</span>
|
||||||
|
<input type="checkbox" bind:checked>
|
||||||
|
<span class:active={checked}>output</span>
|
||||||
|
</label>
|
@ -0,0 +1,40 @@
|
|||||||
|
<script>
|
||||||
|
export let offset = 0;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.toggle {
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 42px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
border-top: 1px solid var(--second);
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
padding: 0.3em 0.6em;
|
||||||
|
border-radius: 1em;
|
||||||
|
line-height: 1;
|
||||||
|
height: 1em;
|
||||||
|
box-sizing: content-box;
|
||||||
|
color: #999;
|
||||||
|
border: 1px solid #f4f4f4;
|
||||||
|
width: 4em;
|
||||||
|
margin: 0 0.15em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.selected {
|
||||||
|
background-color: var(--prime);
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<div class="toggle">
|
||||||
|
<button class:selected={offset === 0} on:click={() => offset = 0}>tutorial</button>
|
||||||
|
<button class:selected={offset === 1} on:click={() => offset = 1}>input</button>
|
||||||
|
<button class:selected={offset === 2} on:click={() => offset = 2}>output</button>
|
||||||
|
</div>
|
Loading…
Reference in new issue