-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.html
136 lines (136 loc) · 3.12 KB
/
page.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Slide</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@page {
size: A4 landscape;
margin: 0;
}
body,
html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
font-family: "IBM Plex Sans", Arial, sans-serif;
}
img {
height: 2rem;
width: 2rem;
}
.container {
display: flex;
flex-direction: column;
padding: 20px;
}
.header {
font-size: 28px;
font-weight: bold;
padding-bottom: 25px;
}
.content {
display: flex;
flex: 1;
justify-content: space-between;
position: relative;
}
.column {
display: flex;
flex-direction: column;
width: 30%;
}
.column img {
margin-bottom: 10px;
}
.column h2 {
font-size: 24px;
font-weight: bold;
margin: 0;
padding-bottom: 5px;
border-bottom: 1px solid #7e7e7e;
}
.column ul {
list-style-type: none;
padding-left: 2px;
}
.column ul li {
font-size: 12px;
margin: 10px 0;
}
.separator {
display: flex;
padding-top: 55px;
width: 0%;
position: relative;
}
.separator img {
z-index: 1;
transform: translateX(-13px);
scale: 1.3;
}
.vertical-line {
position: absolute;
left: 32%;
top: 0;
bottom: 0;
border-left: 1px solid #d8d8d8;
height: 80vh;
transform: translateY(60px);
}
.impact {
padding: 20px;
height: 100%;
display: flex;
flex-direction: column;
transform: translateX(-18px);
padding-top: 40px;
}
.mid {
}
.background {
z-index: -1;
width: 36vw;
height: 100%;
position: fixed;
right: 0;
background-color: #e6e7ed;
}
</style>
</head>
<body>
<div class="background"></div>
<div class="container">
<div class="header">@@TITLE@@</div>
<div class="content">
<div class="column">
<img src="doc.svg" alt="File Icon" />
<h2>Context</h2>
<ul>
@@CONTEXT@@
</ul>
</div>
<div class="separator">
<img src="arrow.png" alt="Arrow Icon" />
</div>
<div class="vertical-line"></div>
<div class="column">
<img src="target.svg" alt="Target Icon" />
<h2>Approach</h2>
<ul style="padding-right: 20px">
@@APPROACH@@
</ul>
</div>
<div class="column impact">
<h2>Impact</h2>
<ul>
@@IMPACT@@
</ul>
</div>
</div>
</div>
</body>
</html>