greenwood-starter-presentation
Version:
A Greenwood plugin and general purpose starter kit for creating slide decks and presentations from markdown.
51 lines (42 loc) • 1.19 kB
HTML
<html>
<head>
<link rel="stylesheet" href="/node_modules/greenwood-starter-presentation/dist/styles/theme.css"></link>
<link rel="stylesheet" href="/node_modules/greenwood-starter-presentation/dist/styles/main.css"></link>
<style>
:root {
width: 99%;
}
:root p {
max-width: 60ch;
margin: 0 auto;
}
div#container {
display: flex;
flex-direction: column;
justify-content: center;
height: 100vh;
width: 100%;
margin: 0;
}
div#container > h1 {
text-align: center;
}
div#container > hr {
position: absolute;
width: 100px;
border: 3px solid var(--color-secondary);
bottom: 2rem;
left: 80%;
}
</style>
</head>
<body>
<div id="container">
<content-outlet></content-outlet>
<hr />
</div>
<script type="module" src="/node_modules/greenwood-starter-presentation/dist/components/link-target.js"></script>
<script type="module" src="/node_modules/greenwood-starter-presentation/dist/components/iframe-key-capture.js"></script>
</body>
</html>