@enure/jacklin 1.2.1 → 1.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/template.handlebars +35 -29
package/package.json
CHANGED
package/template.handlebars
CHANGED
|
@@ -4,67 +4,73 @@
|
|
|
4
4
|
<title>{{ basics.name }}</title>
|
|
5
5
|
<meta charset="utf-8" />
|
|
6
6
|
<style>
|
|
7
|
-
* {
|
|
8
|
-
margin: 0;
|
|
9
|
-
padding: 0;
|
|
10
|
-
}
|
|
11
7
|
body {
|
|
12
8
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
13
|
-
font-size:
|
|
14
|
-
line-height:
|
|
9
|
+
font-size: 14px;
|
|
10
|
+
line-height: 1.3;
|
|
15
11
|
color: #222;
|
|
16
|
-
|
|
17
|
-
@media screen {
|
|
18
|
-
body {
|
|
19
|
-
margin: 54px 36px;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
@page {
|
|
23
|
-
margin: 1in 0.75in;
|
|
24
|
-
size: 8.5in 11in;
|
|
12
|
+
padding: 64px;
|
|
25
13
|
}
|
|
26
14
|
main {
|
|
27
|
-
|
|
15
|
+
margin-top: 48px;
|
|
16
|
+
max-width: 800px;
|
|
28
17
|
}
|
|
29
18
|
main > section {
|
|
30
19
|
margin-top: 36px;
|
|
31
20
|
}
|
|
32
21
|
h1, h2 {
|
|
33
|
-
font-size:
|
|
34
|
-
font-weight:
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-weight: 500;
|
|
24
|
+
margin: 0;
|
|
35
25
|
}
|
|
36
|
-
|
|
26
|
+
.BasicsList {
|
|
27
|
+
padding: 0;
|
|
28
|
+
list-style-type: none;
|
|
29
|
+
margin-bottom: 32px;
|
|
30
|
+
}
|
|
31
|
+
.EducationList {
|
|
32
|
+
list-style-type: none;
|
|
33
|
+
}
|
|
34
|
+
.WorkList {
|
|
37
35
|
list-style-type: none;
|
|
38
36
|
margin: 0;
|
|
39
37
|
padding: 0;
|
|
40
38
|
}
|
|
41
|
-
.BasicsList {
|
|
42
|
-
margin-bottom: 18px;
|
|
43
|
-
}
|
|
44
39
|
.WorkList-item {
|
|
45
|
-
margin-top:
|
|
40
|
+
margin-top: 32px;
|
|
46
41
|
page-break-inside: avoid;
|
|
47
42
|
}
|
|
48
43
|
.WorkList-dates {
|
|
49
44
|
color: #666;
|
|
45
|
+
font-size: 14px;
|
|
50
46
|
}
|
|
51
47
|
.WorkList-positionAt {
|
|
52
48
|
font-weight: 500;
|
|
53
49
|
}
|
|
54
50
|
.WorkList-summary {
|
|
55
|
-
margin-top:
|
|
51
|
+
margin-top: 8px;
|
|
52
|
+
}
|
|
53
|
+
.SummaryList {
|
|
54
|
+
list-style-type: "· ";
|
|
55
|
+
padding: 0;
|
|
56
|
+
margin: 16px 0;
|
|
57
|
+
}
|
|
58
|
+
.SummaryList-item {
|
|
59
|
+
|
|
56
60
|
}
|
|
57
61
|
.WorkList-highlights {
|
|
58
|
-
margin-top:
|
|
62
|
+
margin-top: 12px;
|
|
59
63
|
display: flex;
|
|
60
64
|
flex-direction: row;
|
|
61
65
|
flex-wrap: wrap;
|
|
66
|
+
list-style-type: none;
|
|
67
|
+
padding: 0;
|
|
62
68
|
}
|
|
63
69
|
.WorkList-highlight {
|
|
64
|
-
font-size:
|
|
70
|
+
font-size: 12px;
|
|
65
71
|
color: #555;
|
|
66
|
-
margin:
|
|
67
|
-
padding:
|
|
72
|
+
margin-right: 8px;
|
|
73
|
+
padding: 3px 6px;
|
|
68
74
|
border: 1px solid #aaa;
|
|
69
75
|
border-radius: 4px;
|
|
70
76
|
}
|
|
@@ -105,7 +111,7 @@
|
|
|
105
111
|
{{this.position}} at {{this.name}}
|
|
106
112
|
</div>
|
|
107
113
|
<div class="WorkList-dates">
|
|
108
|
-
{{this.startDate}}
|
|
114
|
+
{{this.startDate}} to {{#if this.endDate }}{{this.endDate}}{{/if}}{{#unless this.endDate }}current{{/unless}}
|
|
109
115
|
</div>
|
|
110
116
|
<div class="WorkList-summary">
|
|
111
117
|
{{{summaryToList this.summary}}}
|