modern-resume-theme 1.4.0 → 1.5.0
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/README.md +18 -3
- data/_includes/a.html +2 -0
- data/_includes/experience.html +6 -2
- data/_includes/header.html +6 -1
- data/_includes/projects.html +1 -1
- data/_sass/modern-resume-theme.scss +201 -0
- data/assets/main.scss +1 -201
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 39f4decc5aeb7c3d757da50f8c37f286a6b82940
|
|
4
|
+
data.tar.gz: 46fd25ef9cad51a8d17596410e4f61c40725bab2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5230aa29b5cf486af2963da65b1f64072cf79da608e803782afd78358a00289e7745c0288ed228466aea44a9ea245f0d238a0a4a8052e1f125d51e29ad89f42
|
|
7
|
+
data.tar.gz: a2b18e0332bf1440f860052003ea9c68ec0e669d2680b47842a9aed22670de5f8721b085d9763bb417438b0e3ac914f0f8c6eb2f807375fb1da4b7357f33408c
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# modern-resume-theme [](https://badge.fury.io/rb/modern-resume-theme) [](https://travis-ci.org/sproogen/modern-resume-theme)
|
|
2
2
|
|
|
3
|
-
*A modern simple static resume template and theme. Powered by Jekyll and GitHub pages.*
|
|
3
|
+
*A modern simple static resume template and theme. Powered by Jekyll and GitHub pages.*
|
|
4
4
|
*Host your own resume on GitHub for **free!***
|
|
5
5
|
|
|
6
6
|
[View Demo](https://sproogen.github.io/modern-resume-theme/)
|
|
@@ -61,7 +61,7 @@ A list of all your education, each education will follow this format
|
|
|
61
61
|
A list of all your experience, each experience will follow this format
|
|
62
62
|
```
|
|
63
63
|
- company: Company name
|
|
64
|
-
link: Link to company (optional)
|
|
64
|
+
link: Link to company (eg. https://google.com)(optional)
|
|
65
65
|
job_title: Job title
|
|
66
66
|
dates: Date Range (eg. November 2016 - present)
|
|
67
67
|
quote: >
|
|
@@ -70,11 +70,26 @@ A list of all your experience, each experience will follow this format
|
|
|
70
70
|
Description of role
|
|
71
71
|
```
|
|
72
72
|
|
|
73
|
+
If you wish to specify multiple titles for a single company, use this format
|
|
74
|
+
```
|
|
75
|
+
- company: Company name
|
|
76
|
+
link: Link to company (optional)
|
|
77
|
+
jobs:
|
|
78
|
+
- title: Job title 1
|
|
79
|
+
dates: Date Range (eg. November 2016 - present)
|
|
80
|
+
- title: Job title 2
|
|
81
|
+
dates: Date Range (eg. January 2015 - November 2016)
|
|
82
|
+
quote: >
|
|
83
|
+
Short description of the company (optional)
|
|
84
|
+
description: | # this will include new lines to allow paragraphs
|
|
85
|
+
Description of role
|
|
86
|
+
```
|
|
87
|
+
|
|
73
88
|
##### _data/projects.yml
|
|
74
89
|
A list of all your projects, each project will follow this format
|
|
75
90
|
```
|
|
76
91
|
- name: Project name
|
|
77
|
-
link: Link to project (eg. sproogen.github.io/modern-resume-theme)(optional)
|
|
92
|
+
link: Link to project (eg. https://sproogen.github.io/modern-resume-theme)(optional)
|
|
78
93
|
github: Github page for project (eg. sproogen/modern-resume-theme)(optional)
|
|
79
94
|
quote: >
|
|
80
95
|
Short overview of the project (optional)
|
data/_includes/a.html
ADDED
data/_includes/experience.html
CHANGED
|
@@ -5,15 +5,19 @@
|
|
|
5
5
|
<div class="col-xs-12 col-sm-4 col-md-3 col-print-12 left-column">
|
|
6
6
|
<h4 class="name">
|
|
7
7
|
{%- if experience.link -%}
|
|
8
|
-
|
|
8
|
+
{% include a.html href=experience.link %}
|
|
9
9
|
{%- endif -%}
|
|
10
|
-
|
|
10
|
+
{{ experience.company }}
|
|
11
11
|
{%- if experience.link -%}
|
|
12
12
|
</a>
|
|
13
13
|
{%- endif -%}
|
|
14
14
|
</h4>
|
|
15
15
|
<p><b>{{ experience.job_title }}</b></p>
|
|
16
16
|
<p>{{ experience.dates }}</p>
|
|
17
|
+
{% for job in experience.jobs %}
|
|
18
|
+
<p><b>{{ job.title }}</b></p>
|
|
19
|
+
<p>{{ job.dates }}</p>
|
|
20
|
+
{% endfor %}
|
|
17
21
|
</div>
|
|
18
22
|
<div class="col-xs-12 col-sm-8 col-md-9 col-print-12">
|
|
19
23
|
{%- if experience.quote -%}
|
data/_includes/header.html
CHANGED
|
@@ -90,9 +90,14 @@
|
|
|
90
90
|
Email: <a href="mailto:{{ site.email }}" target="_blank">{{ site.email | escape }}</a>
|
|
91
91
|
</p>
|
|
92
92
|
{%- endif -%}
|
|
93
|
+
{%- if site.phone -%}
|
|
94
|
+
<p>
|
|
95
|
+
Phone: {{ site.phone | escape }}
|
|
96
|
+
</p>
|
|
97
|
+
{%- endif -%}
|
|
93
98
|
{%- if site.website -%}
|
|
94
99
|
<p>
|
|
95
|
-
Web:
|
|
100
|
+
Web: {% include a.html href=site.website %}{{ site.website | escape }}</a>
|
|
96
101
|
</p>
|
|
97
102
|
{%- endif -%}
|
|
98
103
|
</div>
|
data/_includes/projects.html
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<div class="col-xs-12 col-sm-4 col-md-3 col-print-12 left-column">
|
|
6
6
|
<h4>{{ project.name }}</h4>
|
|
7
7
|
{%- if project.link -%}
|
|
8
|
-
|
|
8
|
+
{% include a.html href=project.link class="project-link" %}{{ project.link }}</a>
|
|
9
9
|
{%- endif -%}
|
|
10
10
|
<p class="no-print">
|
|
11
11
|
<a href="https://github.com/{{ project.github }}" target="_blank">
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
@import "base";
|
|
2
|
+
@import "button";
|
|
3
|
+
@import "type";
|
|
4
|
+
|
|
5
|
+
ul.icons a:hover {
|
|
6
|
+
background: rgba(0, 0, 0, 0.025);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
ul.icons li {
|
|
10
|
+
display: inline-block;
|
|
11
|
+
padding-left: 0.75em;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
ul.icons a {
|
|
15
|
+
-moz-transition: background-color 0.25s ease-in-out;
|
|
16
|
+
-webkit-transition: background-color 0.25s ease-in-out;
|
|
17
|
+
-ms-transition: background-color 0.25s ease-in-out;
|
|
18
|
+
transition: background-color 0.25s ease-in-out;
|
|
19
|
+
display: inline-block;
|
|
20
|
+
width: 2.75em;
|
|
21
|
+
height: 2.75em;
|
|
22
|
+
line-height: 2.8em;
|
|
23
|
+
text-align: center;
|
|
24
|
+
border: 0;
|
|
25
|
+
box-shadow: none;
|
|
26
|
+
padding:0;
|
|
27
|
+
border-radius: 100%;
|
|
28
|
+
color: #aaa;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.icons i {
|
|
32
|
+
font-size: 30px;
|
|
33
|
+
line-height:60px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.icons {
|
|
37
|
+
padding: 0;
|
|
38
|
+
font-size: 1em;
|
|
39
|
+
margin-bottom:20px;
|
|
40
|
+
text-align: right;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@media screen and (max-width: 768px) {
|
|
44
|
+
.icons {
|
|
45
|
+
text-align: center;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.header-right p {
|
|
50
|
+
margin-bottom: 3px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.header-right a{
|
|
54
|
+
color:inherit;
|
|
55
|
+
font-weight:500;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
@media screen and (max-width: 768px) {
|
|
59
|
+
.header-contianer div{
|
|
60
|
+
text-align: center;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.header-right p {
|
|
64
|
+
text-align: center;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.header-left {
|
|
68
|
+
margin-top: 0px;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.profile-img {
|
|
73
|
+
width: 200px;
|
|
74
|
+
height: 200px;
|
|
75
|
+
margin: 0 auto;
|
|
76
|
+
margin-bottom: 20px;
|
|
77
|
+
display: block;
|
|
78
|
+
border-radius: 100px;
|
|
79
|
+
background-size: cover;
|
|
80
|
+
background-position: center;
|
|
81
|
+
background-repeat: repeat, no-repeat;
|
|
82
|
+
-moz-box-shadow: inset 0 0 20px #636161;
|
|
83
|
+
-webkit-box-shadow: inset 0 0 20px #636161;
|
|
84
|
+
box-shadow: inset 0 0 20px #636161;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.into-text-1 {
|
|
88
|
+
margin-top: 30px;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
@media only screen and (max-width : 992px) {
|
|
92
|
+
.into-text-1 {
|
|
93
|
+
margin-top: 20px;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.projects-container, .experience-container, .education-container {
|
|
98
|
+
h3 {
|
|
99
|
+
margin-bottom: 0;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.experience, .education, .project {
|
|
104
|
+
margin-top: 3em;
|
|
105
|
+
|
|
106
|
+
.left-column {
|
|
107
|
+
text-align: left;
|
|
108
|
+
|
|
109
|
+
p {
|
|
110
|
+
margin-bottom: 3px;
|
|
111
|
+
font-size: 1.6em;
|
|
112
|
+
text-align: inherit;
|
|
113
|
+
font-weight: 300;
|
|
114
|
+
|
|
115
|
+
b {
|
|
116
|
+
font-weight: 500;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
@media screen and (max-width: 768px) {
|
|
121
|
+
text-align: center;
|
|
122
|
+
|
|
123
|
+
p {
|
|
124
|
+
text-align: center;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
a {
|
|
129
|
+
color: inherit;
|
|
130
|
+
font-style: italic;
|
|
131
|
+
font-weight: 300;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.fa {
|
|
135
|
+
font-size: 2em;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.project-link {
|
|
139
|
+
font-size: 1.5em;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
h4 {
|
|
143
|
+
margin-bottom: 0.4em;
|
|
144
|
+
font-weight: 500;
|
|
145
|
+
|
|
146
|
+
@media print {
|
|
147
|
+
margin-bottom: 0.2em;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
a {
|
|
151
|
+
font-weight: 500;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.footer-container {
|
|
158
|
+
margin-top:100px;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.footer-container p{
|
|
162
|
+
text-align: center;
|
|
163
|
+
font-style: italic;
|
|
164
|
+
font-weight: 300;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.footer-container a{
|
|
168
|
+
color: inherit;
|
|
169
|
+
font-style: italic;
|
|
170
|
+
font-weight: 300;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.page-content {
|
|
174
|
+
padding: 0;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.contact a {
|
|
178
|
+
line-height: 50px;
|
|
179
|
+
margin-left: 30px;
|
|
180
|
+
color: #BBBBBB;
|
|
181
|
+
-webkit-transition: color 0.4s ease;
|
|
182
|
+
-moz-transition: color 0.4s ease;
|
|
183
|
+
transition: color 0.4s ease;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.contact a:hover {
|
|
187
|
+
color: #4C4C4C;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
p.quote {
|
|
191
|
+
font-size: 1.4em;
|
|
192
|
+
font-style: italic;
|
|
193
|
+
padding: 1em 2.5em;
|
|
194
|
+
text-align: center;
|
|
195
|
+
|
|
196
|
+
@media print {
|
|
197
|
+
text-align: left;
|
|
198
|
+
padding: 0em 1em;
|
|
199
|
+
margin-top: 1em;
|
|
200
|
+
}
|
|
201
|
+
}
|
data/assets/main.scss
CHANGED
|
@@ -2,204 +2,4 @@
|
|
|
2
2
|
# Front matter comment to ensure Jekyll properly reads file.
|
|
3
3
|
---
|
|
4
4
|
|
|
5
|
-
@import
|
|
6
|
-
@import "button";
|
|
7
|
-
@import "type";
|
|
8
|
-
|
|
9
|
-
ul.icons a:hover {
|
|
10
|
-
background: rgba(0, 0, 0, 0.025);
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
ul.icons li {
|
|
14
|
-
display: inline-block;
|
|
15
|
-
padding-left: 0.75em;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
ul.icons a {
|
|
19
|
-
-moz-transition: background-color 0.25s ease-in-out;
|
|
20
|
-
-webkit-transition: background-color 0.25s ease-in-out;
|
|
21
|
-
-ms-transition: background-color 0.25s ease-in-out;
|
|
22
|
-
transition: background-color 0.25s ease-in-out;
|
|
23
|
-
display: inline-block;
|
|
24
|
-
width: 2.75em;
|
|
25
|
-
height: 2.75em;
|
|
26
|
-
line-height: 2.8em;
|
|
27
|
-
text-align: center;
|
|
28
|
-
border: 0;
|
|
29
|
-
box-shadow: none;
|
|
30
|
-
padding:0;
|
|
31
|
-
border-radius: 100%;
|
|
32
|
-
color: #aaa;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.icons i {
|
|
36
|
-
font-size: 30px;
|
|
37
|
-
line-height:60px;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.icons {
|
|
41
|
-
padding: 0;
|
|
42
|
-
font-size: 1em;
|
|
43
|
-
margin-bottom:20px;
|
|
44
|
-
text-align: right;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
@media screen and (max-width: 768px) {
|
|
48
|
-
.icons {
|
|
49
|
-
text-align: center;
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.header-right p {
|
|
54
|
-
margin-bottom: 3px;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.header-right a{
|
|
58
|
-
color:inherit;
|
|
59
|
-
font-weight:500;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
@media screen and (max-width: 768px) {
|
|
63
|
-
.header-contianer div{
|
|
64
|
-
text-align: center;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.header-right p {
|
|
68
|
-
text-align: center;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.header-left {
|
|
72
|
-
margin-top: 0px;
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.profile-img {
|
|
77
|
-
width: 200px;
|
|
78
|
-
height: 200px;
|
|
79
|
-
margin: 0 auto;
|
|
80
|
-
margin-bottom: 20px;
|
|
81
|
-
display: block;
|
|
82
|
-
border-radius: 100px;
|
|
83
|
-
background-size: cover;
|
|
84
|
-
background-position: center;
|
|
85
|
-
background-repeat: repeat, no-repeat;
|
|
86
|
-
-moz-box-shadow: inset 0 0 20px #636161;
|
|
87
|
-
-webkit-box-shadow: inset 0 0 20px #636161;
|
|
88
|
-
box-shadow: inset 0 0 20px #636161;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
.into-text-1 {
|
|
92
|
-
margin-top: 30px;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
@media only screen and (max-width : 992px) {
|
|
96
|
-
.into-text-1 {
|
|
97
|
-
margin-top: 20px;
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
.projects-container, .experience-container, .education-container {
|
|
102
|
-
h3 {
|
|
103
|
-
margin-bottom: 0;
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.experience, .education, .project {
|
|
108
|
-
margin-top: 3em;
|
|
109
|
-
|
|
110
|
-
.left-column {
|
|
111
|
-
text-align: left;
|
|
112
|
-
|
|
113
|
-
p {
|
|
114
|
-
margin-bottom: 3px;
|
|
115
|
-
font-size: 1.6em;
|
|
116
|
-
text-align: inherit;
|
|
117
|
-
font-weight: 300;
|
|
118
|
-
|
|
119
|
-
b {
|
|
120
|
-
font-weight: 500;
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
@media screen and (max-width: 768px) {
|
|
125
|
-
text-align: center;
|
|
126
|
-
|
|
127
|
-
p {
|
|
128
|
-
text-align: center;
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
a {
|
|
133
|
-
color: inherit;
|
|
134
|
-
font-style: italic;
|
|
135
|
-
font-weight: 300;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
.fa {
|
|
139
|
-
font-size: 2em;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
.project-link {
|
|
143
|
-
font-size: 1.5em;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
h4 {
|
|
147
|
-
margin-bottom: 0.4em;
|
|
148
|
-
font-weight: 500;
|
|
149
|
-
|
|
150
|
-
@media print {
|
|
151
|
-
margin-bottom: 0.2em;
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
a {
|
|
155
|
-
font-weight: 500;
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
.footer-container {
|
|
162
|
-
margin-top:100px;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
.footer-container p{
|
|
166
|
-
text-align: center;
|
|
167
|
-
font-style: italic;
|
|
168
|
-
font-weight: 300;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
.footer-container a{
|
|
172
|
-
color: inherit;
|
|
173
|
-
font-style: italic;
|
|
174
|
-
font-weight: 300;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.page-content {
|
|
178
|
-
padding: 0;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
.contact a {
|
|
182
|
-
line-height: 50px;
|
|
183
|
-
margin-left: 30px;
|
|
184
|
-
color: #BBBBBB;
|
|
185
|
-
-webkit-transition: color 0.4s ease;
|
|
186
|
-
-moz-transition: color 0.4s ease;
|
|
187
|
-
transition: color 0.4s ease;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
.contact a:hover {
|
|
191
|
-
color: #4C4C4C;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
p.quote {
|
|
195
|
-
font-size: 1.4em;
|
|
196
|
-
font-style: italic;
|
|
197
|
-
padding: 1em 2.5em;
|
|
198
|
-
text-align: center;
|
|
199
|
-
|
|
200
|
-
@media print {
|
|
201
|
-
text-align: left;
|
|
202
|
-
padding: 0em 1em;
|
|
203
|
-
margin-top: 1em;
|
|
204
|
-
}
|
|
205
|
-
}
|
|
5
|
+
@import 'modern-resume-theme'
|
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: 1.
|
|
4
|
+
version: 1.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Grant
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-01-
|
|
11
|
+
date: 2019-01-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: github-pages
|
|
@@ -75,6 +75,7 @@ extra_rdoc_files: []
|
|
|
75
75
|
files:
|
|
76
76
|
- LICENSE
|
|
77
77
|
- README.md
|
|
78
|
+
- _includes/a.html
|
|
78
79
|
- _includes/about.html
|
|
79
80
|
- _includes/education.html
|
|
80
81
|
- _includes/experience.html
|
|
@@ -87,6 +88,7 @@ files:
|
|
|
87
88
|
- _layouts/default.html
|
|
88
89
|
- _sass/base.scss
|
|
89
90
|
- _sass/button.scss
|
|
91
|
+
- _sass/modern-resume-theme.scss
|
|
90
92
|
- _sass/type.scss
|
|
91
93
|
- assets/main.scss
|
|
92
94
|
homepage: https://github.com/sproogen/modern-resume-theme
|