1 | <!DOCTYPE html>
|
2 | <html>
|
3 |
|
4 | <head>
|
5 | <link rel="stylesheet" href="/node_modules/greenwood-starter-presentation/dist/styles/theme.css"></link>
|
6 | <link rel="stylesheet" href="/node_modules/greenwood-starter-presentation/dist/styles/main.css"></link>
|
7 |
|
8 | <style>
|
9 |
|
10 | :root {
|
11 | width: 90%;
|
12 | }
|
13 | div#container {
|
14 | display: flex;
|
15 | flex-direction: column;
|
16 | text-align: left;
|
17 | height: 95vh;
|
18 | padding-left: 2rem;
|
19 | width: 100%;
|
20 | margin: 0;
|
21 | }
|
22 |
|
23 | p {
|
24 | margin-top: auto;
|
25 | font-size: 2rem;
|
26 | padding-left: 1rem;
|
27 | }
|
28 |
|
29 | div#container > hr {
|
30 | position: absolute;
|
31 | width: 100px;
|
32 | border: 3px solid var(--color-secondary);
|
33 | bottom: 2rem;
|
34 | left: 80%;
|
35 | }
|
36 | </style>
|
37 | </head>
|
38 |
|
39 | <body>
|
40 | <div id="container">
|
41 | <content-outlet></content-outlet>
|
42 | <hr />
|
43 | </div>
|
44 | <script type="module" src="/node_modules/greenwood-starter-presentation/dist/components/link-target.js"></script>
|
45 | <script type="module" src="/node_modules/greenwood-starter-presentation/dist/components/iframe-key-capture.js"></script>
|
46 | </body>
|
47 |
|
48 | </html> |
\ | No newline at end of file |