@enure/jacklin 1.2.0 → 1.2.2
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 +31 -31
package/package.json
CHANGED
package/template.handlebars
CHANGED
|
@@ -4,67 +4,67 @@
|
|
|
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
|
+
margin-bottom: 32px;
|
|
29
|
+
}
|
|
30
|
+
.WorkList {
|
|
37
31
|
list-style-type: none;
|
|
38
32
|
margin: 0;
|
|
39
33
|
padding: 0;
|
|
40
34
|
}
|
|
41
|
-
.BasicsList {
|
|
42
|
-
margin-bottom: 18px;
|
|
43
|
-
}
|
|
44
35
|
.WorkList-item {
|
|
45
|
-
margin-top:
|
|
36
|
+
margin-top: 32px;
|
|
46
37
|
page-break-inside: avoid;
|
|
47
38
|
}
|
|
48
39
|
.WorkList-dates {
|
|
49
40
|
color: #666;
|
|
41
|
+
font-size: 14px;
|
|
50
42
|
}
|
|
51
43
|
.WorkList-positionAt {
|
|
52
44
|
font-weight: 500;
|
|
53
45
|
}
|
|
54
46
|
.WorkList-summary {
|
|
55
|
-
margin-top:
|
|
47
|
+
margin-top: 8px;
|
|
48
|
+
}
|
|
49
|
+
.SummaryList {
|
|
50
|
+
list-style-type: square;
|
|
51
|
+
padding: 16px;
|
|
52
|
+
}
|
|
53
|
+
.SummaryList-item {
|
|
54
|
+
|
|
56
55
|
}
|
|
57
56
|
.WorkList-highlights {
|
|
58
|
-
margin-top:
|
|
57
|
+
margin-top: 12px;
|
|
59
58
|
display: flex;
|
|
60
59
|
flex-direction: row;
|
|
61
|
-
|
|
60
|
+
list-style-type: none;
|
|
61
|
+
padding: 0;
|
|
62
62
|
}
|
|
63
63
|
.WorkList-highlight {
|
|
64
|
-
font-size:
|
|
64
|
+
font-size: 12px;
|
|
65
65
|
color: #555;
|
|
66
|
-
margin:
|
|
67
|
-
padding:
|
|
66
|
+
margin-right: 8px;
|
|
67
|
+
padding: 3px 6px;
|
|
68
68
|
border: 1px solid #aaa;
|
|
69
69
|
border-radius: 4px;
|
|
70
70
|
}
|
|
@@ -105,10 +105,10 @@
|
|
|
105
105
|
{{this.position}} at {{this.name}}
|
|
106
106
|
</div>
|
|
107
107
|
<div class="WorkList-dates">
|
|
108
|
-
{{this.startDate}}
|
|
108
|
+
{{this.startDate}} to {{#if this.endDate }}{{this.endDate}}{{/if}}{{#unless this.endDate }}current{{/unless}}
|
|
109
109
|
</div>
|
|
110
110
|
<div class="WorkList-summary">
|
|
111
|
-
{{summaryToList this.summary}}
|
|
111
|
+
{{{summaryToList this.summary}}}
|
|
112
112
|
</div>
|
|
113
113
|
{{#if this.highlights}}
|
|
114
114
|
<ul class="WorkList-highlights">
|