Bring in some retro oldschool fonts from https://int10h.org/oldschool-pc-fonts/fontlist/
parent
937ef3192e
commit
8f8db6555d
@ -0,0 +1,39 @@ |
||||
<script> |
||||
import Icon from './Icon.svelte'; |
||||
</script> |
||||
|
||||
<style lang="scss"> |
||||
@import 'sass/_variables'; |
||||
|
||||
#footer { |
||||
border-top: 1px solid $primary-color; |
||||
background-color: $gray-color-light; |
||||
} |
||||
|
||||
#right-column { |
||||
padding: 2rem; |
||||
} |
||||
|
||||
#footer .panel { |
||||
border: 0px; |
||||
border-radius: 0px; |
||||
font-size: $font-size-sm; |
||||
} |
||||
</style> |
||||
|
||||
<div id="footer" class="columns col-gapless"> |
||||
<div class="column col-9"> |
||||
<div class="panel"> |
||||
<div class="panel-header"> |
||||
This website and all content is Copyright © Zed A. Shaw since 2020 and beyond. |
||||
</div> |
||||
<div class="panel-body"> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="column col-3" id="right-column"> |
||||
<a alt="Twitter @lzsthw" aria-label="Twitter @lzsthw" rel="external" href="https://twitter.com/lzsthw"><Icon size="48" name="twitter" /></a> |
||||
<a alt="The git repository" aria-label="The git repository" rel="external" href="https://git.learnjsthehardway.com/zedshaw/buttons-computer"><Icon size="48" name="code" /></a> |
||||
</div> |
||||
</div> |
@ -0,0 +1,20 @@ |
||||
<script> |
||||
import { ButtonMachine } from 'buttons'; |
||||
|
||||
let ops = ButtonMachine.operations(); |
||||
|
||||
</script> |
||||
|
||||
<style lang="scss"> |
||||
</style> |
||||
|
||||
<b>HELP</b> |
||||
<pre> |
||||
<code> |
||||
OPERATIONS: |
||||
|
||||
{#each ops as op} |
||||
{ op + '\n'} |
||||
{/each} |
||||
</code> |
||||
</pre> |
@ -1,9 +1,51 @@ |
||||
<script> |
||||
import Footer from '../components/Footer.svelte'; |
||||
import Sidebar from '../components/Sidebar.svelte'; |
||||
</script> |
||||
|
||||
<style> |
||||
#main { |
||||
display: flex; |
||||
flex: 1 0 auto; |
||||
min-height: 100vh; |
||||
flex-direction: column; |
||||
padding-left: 0px; |
||||
padding-right: 0px; |
||||
min-width: 340px; |
||||
} |
||||
|
||||
#main_content { |
||||
flex-grow: 1; |
||||
} |
||||
</style> |
||||
|
||||
<main> |
||||
<div class="container grid-xl full-width" id="main"> |
||||
<div class="columns" id="nav"> |
||||
<div class="column col-mx-auto"> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="container full-width" id="main_content"> |
||||
<div class="columns"> |
||||
<div class="column col-mx-auto"> |
||||
<div class="off-canvas"> |
||||
<a class="off-canvas-toggle btn btn-primary btn-action" href="#sidebar-id"> |
||||
?¿ |
||||
</a> |
||||
|
||||
<div id="sidebar-id" class="off-canvas-sidebar"> |
||||
<Sidebar /> |
||||
</div> |
||||
|
||||
<a class="off-canvas-overlay" href="#close"></a> |
||||
|
||||
<div class="off-canvas-content"> |
||||
<slot></slot> |
||||
</main> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
<Footer/> |
||||
</div> |
||||
|
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue