modern-resume-theme 2.0.5 → 2.0.9
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.
- checksums.yaml +4 -4
- data/_includes/header.html +1 -8
- data/_includes/section-list.html +1 -1
- data/_sass/base.scss +1 -1
- data/_sass/modern-resume-theme.scss +14 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 48cb939fbdac2811dc157fdbf2dfa3d04295fd059156d7952a488322dafe1a3d
|
|
4
|
+
data.tar.gz: 542d07c261cd0e2b42ef534c0fc5f0b33b4a60e2e3b71fa4cd6a6a6a7322f239
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a6996584a2c941b6726a399b26a1ec653a0d3994ee681dee7901f5ab02b556ad0b3671b81ce1c9c783d6b067884fa222e32f81932d84f7dcf3560cf04634a17b
|
|
7
|
+
data.tar.gz: dc7a4df57c6c2eabd85a872daa95ed61ec3f4f19b9a43faa482ac233a15fbc86857991d70bb7a4cb33c15dd8b0565a653efa4570b40e7ad5d2b354e2e33cfacb
|
data/_includes/header.html
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<div class="container header-
|
|
1
|
+
<div class="container header-container">
|
|
2
2
|
<div class="row">
|
|
3
3
|
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-8 header-left">
|
|
4
4
|
<h1>{{ site.name | escape }}</h1>
|
|
@@ -83,13 +83,6 @@
|
|
|
83
83
|
</a>
|
|
84
84
|
</li>
|
|
85
85
|
{%- endif -%}
|
|
86
|
-
{%- if site.googleplus_username -%}
|
|
87
|
-
<li>
|
|
88
|
-
<a target="_blank" href="https://plus.google.com/{{ site.googleplus_username| escape }}" class="button button--sacnite button--round-l">
|
|
89
|
-
<i class="fab fa-google-plus" title="Google plus link"></i>
|
|
90
|
-
</a>
|
|
91
|
-
</li>
|
|
92
|
-
{%- endif -%}
|
|
93
86
|
{%- if site.orcid_username -%}
|
|
94
87
|
<li>
|
|
95
88
|
<a target="_blank" href="https://orcid.org/{{ site.orcid_username | escape }}" class="button button--sacnite button--round-l">
|
data/_includes/section-list.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{% for item in include.content %}
|
|
2
|
-
<div class="row clearfix layout layout-{{item.layout | default: 'left'}}">
|
|
2
|
+
<div class="row clearfix layout layout-{{item.layout | default: 'left'}} border-{{item.border | default: 'no'}}">
|
|
3
3
|
<div class="col-xs-12 col-sm-4 col-md-3 col-print-12 details">
|
|
4
4
|
<h4 id="{{ item.title | slugify }}">{{ item.title }}</h4>
|
|
5
5
|
{%- if item.sub_title -%}<p><b>{{ item.sub_title }}</b></p>{%- endif -%}
|
data/_sass/base.scss
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
@media screen and (max-width: 768px) {
|
|
17
|
-
.header-
|
|
17
|
+
.header-container div{
|
|
18
18
|
text-align: center;
|
|
19
19
|
}
|
|
20
20
|
|
|
@@ -58,13 +58,22 @@
|
|
|
58
58
|
}
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
+
.border-weak {
|
|
62
|
+
padding-bottom: 8px;
|
|
63
|
+
border-bottom: dashed 1px #CCCCCC;
|
|
64
|
+
}
|
|
65
|
+
|
|
61
66
|
.layout {
|
|
62
67
|
margin-top: 3rem;
|
|
63
68
|
display: flex;
|
|
64
69
|
flex-direction: row;
|
|
65
70
|
|
|
66
71
|
.details {
|
|
72
|
+
display: flex;
|
|
73
|
+
flex-direction: column;
|
|
67
74
|
text-align: left;
|
|
75
|
+
justify-content: center;
|
|
76
|
+
vertical-align: middle;
|
|
68
77
|
|
|
69
78
|
p {
|
|
70
79
|
margin-bottom: 3px;
|
|
@@ -128,6 +137,10 @@
|
|
|
128
137
|
@media screen and (max-width: 768px) {
|
|
129
138
|
flex-direction: column;
|
|
130
139
|
}
|
|
140
|
+
|
|
141
|
+
.details {
|
|
142
|
+
margin-bottom: 2rem;
|
|
143
|
+
}
|
|
131
144
|
}
|
|
132
145
|
|
|
133
146
|
.layout-top-middle, .layout-top, .layout-top-right {
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: modern-resume-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Grant
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-01-
|
|
11
|
+
date: 2022-01-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: github-pages
|