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: 99%;
|
12 | margin: auto;
|
13 | }
|
14 |
|
15 | :root h1 {
|
16 | background-color: var(--color-tertiary);
|
17 | width: 99%;
|
18 | margin: 0;
|
19 | position: absolute;
|
20 | top: 0;
|
21 | left: 0;
|
22 | }
|
23 |
|
24 | :root p {
|
25 | padding: 0 2rem;
|
26 | }
|
27 |
|
28 | div#container {
|
29 | width: 100%;
|
30 | margin: 0;
|
31 | padding-top: 6rem;
|
32 | }
|
33 |
|
34 | div#container > * {
|
35 | margin-left: auto;
|
36 | width: 50%;
|
37 | }
|
38 |
|
39 | div#container > h1 {
|
40 | width: 100%;
|
41 | }
|
42 |
|
43 | div#container > hr {
|
44 | position: absolute;
|
45 | width: 100px;
|
46 | border: 3px solid var(--color-secondary);
|
47 | bottom: 2rem;
|
48 | left: 80%;
|
49 | }
|
50 |
|
51 | :root img {
|
52 | position: absolute;
|
53 | width: 35%;
|
54 | border: 3px solid var(--color-secondary);
|
55 | bottom: 2rem;
|
56 | left: 2rem;
|
57 | }
|
58 |
|
59 |
|
60 | </style>
|
61 | </head>
|
62 |
|
63 | <body>
|
64 | <div id="container">
|
65 | <content-outlet></content-outlet>
|
66 | <hr />
|
67 | </div>
|
68 |
|
69 | <script type="module" src="/node_modules/greenwood-starter-presentation/dist/components/link-target.js"></script>
|
70 | <script type="module" src="/node_modules/greenwood-starter-presentation/dist/components/iframe-key-capture.js"></script>
|
71 | </body>
|
72 |
|
73 | </html> |
\ | No newline at end of file |