plain_resume 0.1.0 → 0.1.5
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 +1 -1
- data/_config.yml +2 -5
- data/_includes/footer.html +0 -1
- data/assets/theme.css +22 -0
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 885cd6218cbd18515df22ccdd710e3b0e4066f2136e749252e5e87444275fcac
|
4
|
+
data.tar.gz: c5ff5160850339ef80e218a064980db22429905786743f42a3aed33a4776b38d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a89b15e7175a02c6da3c16b7785370190b872d8218aa3ee10a19f3c84ca16837708c637157e3c6d3e2058a46b9897cad74b4ddf558ab25d32fadda0120bff7e5
|
7
|
+
data.tar.gz: c12d7bc0668c8571c407a837c1dd640c62e664222c5a536522efe4fd68d97127acd3a42cccdfdbe1c0ea62d2e52efe59c7481ac0911f72b91cb45aea5306f05d
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Plain
|
1
|
+
# Plain Resume
|
2
2
|
This is a Jekyll theme for creating a simple and customizable resume. This could be used to digitally present your resume online and have it be accessible to anyone who is interested in it.
|
3
3
|
|
4
4
|

|
data/_config.yml
CHANGED
@@ -21,11 +21,8 @@
|
|
21
21
|
title: Your Resume
|
22
22
|
description: >- # this means to ignore newlines until "baseurl:"
|
23
23
|
Your resume.
|
24
|
-
baseurl: "" # the subpath of your site, e.g. /blog
|
25
|
-
url: "" # the base hostname & protocol for your site, e.g. http://example.com
|
26
|
-
|
27
|
-
# Build settings
|
28
|
-
theme: plain-resume
|
24
|
+
baseurl: "/jekyll-plain-resume" # the subpath of your site, e.g. /blog
|
25
|
+
url: "https://ryanxloi.github.io" # the base hostname & protocol for your site, e.g. http://example.com
|
29
26
|
|
30
27
|
# Exclude from processing.
|
31
28
|
# The following items will not be processed, by default.
|
data/_includes/footer.html
CHANGED
data/assets/theme.css
CHANGED
@@ -103,6 +103,12 @@ ul {
|
|
103
103
|
margin: 0;
|
104
104
|
}
|
105
105
|
|
106
|
+
div.footer {
|
107
|
+
background-color: var(--header-and-footer-color);
|
108
|
+
width: 50%;
|
109
|
+
margin-bottom: 15px;
|
110
|
+
}
|
111
|
+
|
106
112
|
/* Media queries */
|
107
113
|
|
108
114
|
/* for extra small devices */
|
@@ -130,6 +136,7 @@ ul {
|
|
130
136
|
}
|
131
137
|
|
132
138
|
div.footer {
|
139
|
+
background-color: var(--header-and-footer-color);
|
133
140
|
width: 95%;
|
134
141
|
margin-bottom: 15px;
|
135
142
|
}
|
@@ -160,6 +167,7 @@ ul {
|
|
160
167
|
}
|
161
168
|
|
162
169
|
div.footer {
|
170
|
+
background-color: var(--header-and-footer-color);
|
163
171
|
width: 95%;
|
164
172
|
margin-bottom: 15px;
|
165
173
|
}
|
@@ -194,6 +202,12 @@ ul {
|
|
194
202
|
width: 95%;
|
195
203
|
margin-bottom: 15px;
|
196
204
|
}
|
205
|
+
|
206
|
+
div.footer {
|
207
|
+
background-color: var(--header-and-footer-color);
|
208
|
+
width: 95%;
|
209
|
+
margin-bottom: 15px;
|
210
|
+
}
|
197
211
|
}
|
198
212
|
|
199
213
|
/* for laptops and desktops */
|
@@ -216,6 +230,12 @@ ul {
|
|
216
230
|
margin: 0px auto;
|
217
231
|
}
|
218
232
|
|
233
|
+
div.footer {
|
234
|
+
background-color: var(--header-and-footer-color);
|
235
|
+
width: 80%;
|
236
|
+
margin-bottom: 15px;
|
237
|
+
}
|
238
|
+
|
219
239
|
/* for large laptops and desktops */
|
220
240
|
@media (min-width: 1200px) {
|
221
241
|
|
@@ -238,6 +258,7 @@ ul {
|
|
238
258
|
|
239
259
|
|
240
260
|
div.footer {
|
261
|
+
background-color: var(--header-and-footer-color);
|
241
262
|
width: 80%;
|
242
263
|
margin-bottom: 15px;
|
243
264
|
}
|
@@ -265,6 +286,7 @@ ul {
|
|
265
286
|
|
266
287
|
|
267
288
|
div.footer {
|
289
|
+
background-color: var(--header-and-footer-color);
|
268
290
|
width: 50%;
|
269
291
|
margin-bottom: 15px;
|
270
292
|
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: plain_resume
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- RyanxLoi
|
@@ -47,10 +47,13 @@ files:
|
|
47
47
|
- _includes/work_experience.html
|
48
48
|
- _layouts/default.html
|
49
49
|
- assets/theme.css
|
50
|
-
homepage: https://
|
50
|
+
homepage: https://github.com/RyanxLoi/plain-jekyll-resume
|
51
51
|
licenses:
|
52
52
|
- MIT
|
53
|
-
metadata:
|
53
|
+
metadata:
|
54
|
+
documentation_uri: https://github.com/RyanxLoi/plain-jekyll-resume
|
55
|
+
source_code_uri: https://github.com/RyanxLoi/plain-jekyll-resume
|
56
|
+
plugin-type: theme
|
54
57
|
post_install_message:
|
55
58
|
rdoc_options: []
|
56
59
|
require_paths:
|