2022-01-28 05:27:12 +00:00
|
|
|
<script lang="ts">
|
2022-04-25 01:00:27 +00:00
|
|
|
import Header from '$lib/header/Header.svelte';
|
|
|
|
|
import '$root/styles/global.css';
|
|
|
|
|
import 'carbon-components-svelte/css/all.css';
|
|
|
|
|
import '../app.css';
|
2022-01-28 05:27:12 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<Header />
|
|
|
|
|
|
|
|
|
|
<main>
|
2022-04-25 01:00:27 +00:00
|
|
|
<slot />
|
2022-01-28 05:27:12 +00:00
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
<footer>
|
2022-04-25 01:00:27 +00:00
|
|
|
<p>Built by <a target="__blank" href="https://bradleyshellnut.com">Bradley Shellnut</a></p>
|
2022-01-28 05:27:12 +00:00
|
|
|
</footer>
|
|
|
|
|
|
|
|
|
|
<style>
|
2022-04-25 01:00:27 +00:00
|
|
|
main {
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 1024px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
2022-01-28 05:27:12 +00:00
|
|
|
|
2022-04-25 01:00:27 +00:00
|
|
|
footer {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 40px;
|
|
|
|
|
}
|
2022-01-28 05:27:12 +00:00
|
|
|
|
2022-04-25 01:00:27 +00:00
|
|
|
footer a {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
2022-01-28 05:27:12 +00:00
|
|
|
|
2022-04-25 01:00:27 +00:00
|
|
|
@media (min-width: 480px) {
|
|
|
|
|
footer {
|
|
|
|
|
padding: 40px 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-01-28 05:27:12 +00:00
|
|
|
</style>
|