jekyll-cv-theme 0.1.0 → 0.1.1
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 +5 -5
- data/LICENSE.txt +21 -0
- data/README.md +88 -0
- data/_data/education.yml +7 -0
- data/_data/professional-strengths.yml +8 -0
- data/_data/references.yml +11 -0
- data/_data/work-experience.yml +34 -0
- data/_includes/footer.html +5 -0
- data/_includes/head.html +32 -0
- data/_includes/header.html +62 -0
- data/_includes/icon-github.html +1 -0
- data/_includes/icon-github.svg +1 -0
- data/_includes/icon-twitter.html +1 -0
- data/_includes/icon-twitter.svg +1 -0
- data/_layouts/default.html +16 -0
- data/_layouts/home.html +62 -0
- data/_sass/core/_functions.scss +14 -0
- data/_sass/core/_mixins.scss +21 -0
- data/_sass/core/_variables.scss +26 -0
- data/_sass/jekyllcv.scss +9 -0
- data/_sass/partials/_base.scss +138 -0
- data/_sass/partials/_layout.scss +118 -0
- data/_sass/partials/_syntax-highlighting.scss +71 -0
- data/assets/css/main.scss +6 -0
- data/assets/css/print.css +25 -0
- data/assets/svg/svgdefs.svg +73 -0
- metadata +33 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 955a2509e69f77b50dd7e19f76cca723b8a8815743a47911470d20a02a800e18
|
4
|
+
data.tar.gz: be93d4ab694b5ecfdb183dee8d26eda07a61376cba8911e949b609ec971ff19a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35d392faeb017b54776e9a4ae6d725b3742c848fa51e3f49dbed975c1e26b67d46f09021e2138f4b77f8e2a44c56eea9fb07ce19a8fdf7d0a0b0cb78b14f1099
|
7
|
+
data.tar.gz: 4ce477fe8040175c571be13f86dfed46e7649819df76f9d953081f7be715d87f059fb997cfbed05a5ecbda5236d6232f6b5dc7bffc69b6e014fa02f1697d726f
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Alek Snyder
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,88 @@
|
|
1
|
+
# jekyll-cv-theme
|
2
|
+
|
3
|
+
A Jekyll theme for your Resume/CV using Material Design guidelines.
|
4
|
+
|
5
|
+
## Screenshot
|
6
|
+
|
7
|
+

|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
Add this line to your Jekyll site's Gemfile:
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
gem "jekyll-cv-theme"
|
15
|
+
```
|
16
|
+
|
17
|
+
And add this line to your Jekyll site's `_config.yml`:
|
18
|
+
|
19
|
+
```yaml
|
20
|
+
theme: jekyll-cv-theme
|
21
|
+
```
|
22
|
+
|
23
|
+
And configure any skills or professional strengths in `_data/professional-strengths.yml`
|
24
|
+
|
25
|
+
```yaml
|
26
|
+
- name: "NodeJS"
|
27
|
+
- name: "HTML5"
|
28
|
+
```
|
29
|
+
|
30
|
+
And configure, add, or edit work experiences in `_data/work-experience.yml`
|
31
|
+
|
32
|
+
```yaml
|
33
|
+
- title: Junior Web Developer
|
34
|
+
place: Cool Company
|
35
|
+
years: 2010-2013
|
36
|
+
description: >
|
37
|
+
Member of a team dedicated to building and
|
38
|
+
maintaining several web-based initiatives
|
39
|
+
for a Cool Company.
|
40
|
+
work-items:
|
41
|
+
- Work item 1
|
42
|
+
- Work item 2
|
43
|
+
- Work item 3
|
44
|
+
```
|
45
|
+
|
46
|
+
And configure, add, or edit education in `_data/education.yml`
|
47
|
+
|
48
|
+
```yaml
|
49
|
+
- name: University of Maryland
|
50
|
+
location: College Park, MD
|
51
|
+
years: 2010-2014
|
52
|
+
degrees:
|
53
|
+
- B.S. Computer Science
|
54
|
+
- Minor in History
|
55
|
+
```
|
56
|
+
|
57
|
+
And configure, add, or edit references in `_data/references.yml`
|
58
|
+
|
59
|
+
```yaml
|
60
|
+
- name: Jane Doe
|
61
|
+
title: Director
|
62
|
+
company: ABC Company
|
63
|
+
location: Virginia
|
64
|
+
phone: 123-456-7890
|
65
|
+
```
|
66
|
+
|
67
|
+
And then execute:
|
68
|
+
|
69
|
+
$ bundle
|
70
|
+
|
71
|
+
Or install it yourself as:
|
72
|
+
|
73
|
+
$ gem install jekyll-cv-theme
|
74
|
+
|
75
|
+
## Contributing
|
76
|
+
|
77
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/aleksnyder/jekyll-cv. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
78
|
+
|
79
|
+
## Development
|
80
|
+
|
81
|
+
To set up your environment to develop this theme, run `bundle install`.
|
82
|
+
|
83
|
+
Your theme is setup just like a normal Jelyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
|
84
|
+
|
85
|
+
## License
|
86
|
+
|
87
|
+
The theme is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
88
|
+
|
data/_data/education.yml
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
jobs:
|
2
|
+
- title: Junior Web Developer
|
3
|
+
place: Cool Company
|
4
|
+
years: 2010-2013
|
5
|
+
description: >
|
6
|
+
Member of a team dedicated to building and
|
7
|
+
maintaining several web-based initiatives
|
8
|
+
for a Cool Company.
|
9
|
+
work-items:
|
10
|
+
- Work item 1
|
11
|
+
- Work item 2
|
12
|
+
- Work item 3
|
13
|
+
- title: Web Developer
|
14
|
+
place: Cooler Company
|
15
|
+
years: 2014-2016
|
16
|
+
description: >
|
17
|
+
Member of a team dedicated to building and
|
18
|
+
maintaining several web-based initiatives
|
19
|
+
for a Cooler Company.
|
20
|
+
work-items:
|
21
|
+
- Work item 1
|
22
|
+
- Work item 2
|
23
|
+
- Work item 3
|
24
|
+
- title: Senior Web Developer
|
25
|
+
place: Coolest Company
|
26
|
+
years: 2016-Present
|
27
|
+
description: >
|
28
|
+
Member of a team dedicated to building and
|
29
|
+
maintaining several web-based initiatives
|
30
|
+
for the Coolest Company.
|
31
|
+
work-items:
|
32
|
+
- Work item 1
|
33
|
+
- Work item 2
|
34
|
+
- Work item 3
|
data/_includes/head.html
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
<head>
|
2
|
+
<meta charset="utf-8">
|
3
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
5
|
+
<link rel="shortcut icon" href="favicon.ico" type="image/vnd.microsoft.icon" />
|
6
|
+
|
7
|
+
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
|
8
|
+
<meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
|
9
|
+
<meta name="format-detection" content="telephone=no">
|
10
|
+
|
11
|
+
<link rel="preconnect" href="https://fonts.gstatic.com">
|
12
|
+
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400&family=Roboto:wght@700&display=swap" rel="stylesheet">
|
13
|
+
|
14
|
+
<link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}">
|
15
|
+
<link rel="stylesheet" media="print" href="{{ "/assets/css/print.css" | relative_url }}">
|
16
|
+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
|
17
|
+
|
18
|
+
{% if jekyll.environment == 'production' and site.google_analytics %}
|
19
|
+
{% include google-analytics.html %}
|
20
|
+
{% endif %}
|
21
|
+
|
22
|
+
<script>
|
23
|
+
var ajax = new XMLHttpRequest();
|
24
|
+
ajax.open("GET", "/assets/svg/svgdefs.svg", true);
|
25
|
+
ajax.send();
|
26
|
+
ajax.onload = function(e) {
|
27
|
+
var div = document.createElement("div");
|
28
|
+
div.innerHTML = ajax.responseText;
|
29
|
+
document.body.insertBefore(div, document.body.childNodes[0]);
|
30
|
+
}
|
31
|
+
</script>
|
32
|
+
</head>
|
@@ -0,0 +1,62 @@
|
|
1
|
+
<header class="header" role="banner">
|
2
|
+
|
3
|
+
<div class="wrapper">
|
4
|
+
|
5
|
+
<h1 class="header__name">{{ site.name | escape }}</a></h1>
|
6
|
+
|
7
|
+
<ul class="header__social">
|
8
|
+
{% if site.behance_username %}
|
9
|
+
<li>
|
10
|
+
<a href="https://www.behance.net/aleksnyder" target="_blank">
|
11
|
+
<svg class="icon-behance" width="25" viewBox="0 0 100 100">
|
12
|
+
<use xlink:href="#icon-behance" />
|
13
|
+
</svg>
|
14
|
+
<span class="screen-reader-text">Behance</span>
|
15
|
+
</a>
|
16
|
+
</li>
|
17
|
+
{% endif %}
|
18
|
+
{% if site.twitter_username %}
|
19
|
+
<li>
|
20
|
+
<a href="https://twitter.com/aleksnyder" target="_blank">
|
21
|
+
<svg class="icon-twitter" width="25" viewBox="0 0 100 100">
|
22
|
+
<use xlink:href="#icon-twitter" />
|
23
|
+
</svg>
|
24
|
+
<span class="screen-reader-text">Twitter</span>
|
25
|
+
</a>
|
26
|
+
</li>
|
27
|
+
{% endif %}
|
28
|
+
{% if site.codepen_username %}
|
29
|
+
<li>
|
30
|
+
<a href="http://codepen.io/pixelpusher89/" target="_blank">
|
31
|
+
<svg class="icon-codepen" width="25" viewBox="0 0 100 100">
|
32
|
+
<use xlink:href="#icon-codepen" />
|
33
|
+
</svg>
|
34
|
+
<span class="screen-reader-text">Codepen</span>
|
35
|
+
</a>
|
36
|
+
</li>
|
37
|
+
{% endif %}
|
38
|
+
{% if site.github_username %}
|
39
|
+
<li>
|
40
|
+
<a href="https://github.com/aleksnyder" target="_blank">
|
41
|
+
<svg class="icon-github" width="25" viewBox="0 0 100 100">
|
42
|
+
<use xlink:href="#icon-github" />
|
43
|
+
</svg>
|
44
|
+
<span class="screen-reader-text">Github</span>
|
45
|
+
</a>
|
46
|
+
</li>
|
47
|
+
{% endif %}
|
48
|
+
{% if site.email %}
|
49
|
+
<li>
|
50
|
+
<a href="mailto:asnyder0816@gmail.com">
|
51
|
+
<svg class="icon-mail" width="25" viewBox="0 0 100 100">
|
52
|
+
<use xlink:href="#icon-mail" />
|
53
|
+
</svg>
|
54
|
+
<span class="screen-reader-text">Email</span>
|
55
|
+
</a>
|
56
|
+
</li>
|
57
|
+
{% endif %}
|
58
|
+
</ul>
|
59
|
+
|
60
|
+
</div>
|
61
|
+
|
62
|
+
</header>
|
@@ -0,0 +1 @@
|
|
1
|
+
<a href="https://github.com/{{ include.username }}"><span class="icon icon--github">{% include icon-github.svg %}</span><span class="username">{{ include.username }}</span></a>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg viewBox="0 0 16 16" width="16px" height="16px"><path fill="#828282" d="M7.999,0.431c-4.285,0-7.76,3.474-7.76,7.761 c0,3.428,2.223,6.337,5.307,7.363c0.388,0.071,0.53-0.168,0.53-0.374c0-0.184-0.007-0.672-0.01-1.32 c-2.159,0.469-2.614-1.04-2.614-1.04c-0.353-0.896-0.862-1.135-0.862-1.135c-0.705-0.481,0.053-0.472,0.053-0.472 c0.779,0.055,1.189,0.8,1.189,0.8c0.692,1.186,1.816,0.843,2.258,0.645c0.071-0.502,0.271-0.843,0.493-1.037 C4.86,11.425,3.049,10.76,3.049,7.786c0-0.847,0.302-1.54,0.799-2.082C3.768,5.507,3.501,4.718,3.924,3.65 c0,0,0.652-0.209,2.134,0.796C6.677,4.273,7.34,4.187,8,4.184c0.659,0.003,1.323,0.089,1.943,0.261 c1.482-1.004,2.132-0.796,2.132-0.796c0.423,1.068,0.157,1.857,0.077,2.054c0.497,0.542,0.798,1.235,0.798,2.082 c0,2.981-1.814,3.637-3.543,3.829c0.279,0.24,0.527,0.713,0.527,1.437c0,1.037-0.01,1.874-0.01,2.129 c0,0.208,0.14,0.449,0.534,0.373c3.081-1.028,5.302-3.935,5.302-7.362C15.76,3.906,12.285,0.431,7.999,0.431z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<a href="https://twitter.com/{{ include.username }}"><span class="icon icon--twitter">{% include icon-twitter.svg %}</span><span class="username">{{ include.username }}</span></a>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg viewBox="0 0 16 16" width="16px" height="16px"><path fill="#828282" d="M15.969,3.058c-0.586,0.26-1.217,0.436-1.878,0.515c0.675-0.405,1.194-1.045,1.438-1.809c-0.632,0.375-1.332,0.647-2.076,0.793c-0.596-0.636-1.446-1.033-2.387-1.033c-1.806,0-3.27,1.464-3.27,3.27 c0,0.256,0.029,0.506,0.085,0.745C5.163,5.404,2.753,4.102,1.14,2.124C0.859,2.607,0.698,3.168,0.698,3.767 c0,1.134,0.577,2.135,1.455,2.722C1.616,6.472,1.112,6.325,0.671,6.08c0,0.014,0,0.027,0,0.041c0,1.584,1.127,2.906,2.623,3.206 C3.02,9.402,2.731,9.442,2.433,9.442c-0.211,0-0.416-0.021-0.615-0.059c0.416,1.299,1.624,2.245,3.055,2.271 c-1.119,0.877-2.529,1.4-4.061,1.4c-0.264,0-0.524-0.015-0.78-0.046c1.447,0.928,3.166,1.469,5.013,1.469 c6.015,0,9.304-4.983,9.304-9.304c0-0.142-0.003-0.283-0.009-0.423C14.976,4.29,15.531,3.714,15.969,3.058z"/></svg>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="{{ site.lang | default: site.lang | default: "en" }}">
|
3
|
+
|
4
|
+
{% include head.html %}
|
5
|
+
|
6
|
+
<body>
|
7
|
+
|
8
|
+
{% include header.html %}
|
9
|
+
|
10
|
+
<main class="content" aria-label="Content">
|
11
|
+
{{ content }}
|
12
|
+
</main>
|
13
|
+
|
14
|
+
</body>
|
15
|
+
|
16
|
+
</html>
|
data/_layouts/home.html
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<div class="wrapper">
|
6
|
+
<article class="resume">
|
7
|
+
{% if site.introduction %}
|
8
|
+
<section class="section">
|
9
|
+
<h2 class="section__title">Objective</h2>
|
10
|
+
{{ site.introduction }}
|
11
|
+
</section>
|
12
|
+
{% endif %}
|
13
|
+
|
14
|
+
<section class="section">
|
15
|
+
<h2 class="section__title">Professional Strengths</h2>
|
16
|
+
<ul>
|
17
|
+
{% for skill in site.data.professional-strengths.skills %}
|
18
|
+
<li>{{ skill.name }}</li>
|
19
|
+
{% endfor %}
|
20
|
+
</ul>
|
21
|
+
</section>
|
22
|
+
|
23
|
+
<section class="section">
|
24
|
+
<h2 class="section__title">Work Experience</h2>
|
25
|
+
|
26
|
+
{% for job in site.data.work-experience.jobs %}
|
27
|
+
<p><strong>{{ job.title }} - {{ job.place }}</strong> ({{ job.years }})<br />
|
28
|
+
{{ job.description}}</p>
|
29
|
+
|
30
|
+
<ul>
|
31
|
+
{% for work-item in job.work-items %}
|
32
|
+
<li>{{ work-item }}</li>
|
33
|
+
{% endfor %}
|
34
|
+
</ul>
|
35
|
+
{% endfor %}
|
36
|
+
</section>
|
37
|
+
|
38
|
+
<section class="section">
|
39
|
+
<h2 class="section__title">Education</h2>
|
40
|
+
|
41
|
+
{% for school in site.data.education.schools %}
|
42
|
+
<p><strong>{{ school.name }}</strong>, {{ school.location }} - ({{ school.years }})</p>
|
43
|
+
<ul>
|
44
|
+
{% for degree in school.degrees %}
|
45
|
+
<li>{{ degree }}</li>
|
46
|
+
{% endfor %}
|
47
|
+
</ul>
|
48
|
+
{% endfor %}
|
49
|
+
</section>
|
50
|
+
|
51
|
+
<section class="section">
|
52
|
+
<h2 class="section__title">References</h2>
|
53
|
+
|
54
|
+
{% for reference in site.data.references.myreferences %}
|
55
|
+
<p><strong>{{ reference.name }}</strong>, {{ reference.title }}<br />
|
56
|
+
{{ reference.company }}, {{ reference.location }}, <a href="tel:{{ reference.phone }}">{{ reference.phone }}</a></p>
|
57
|
+
{% endfor %}
|
58
|
+
</section>
|
59
|
+
</article>
|
60
|
+
|
61
|
+
{% include footer.html %}
|
62
|
+
</div>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
// Convert from pixels to em
|
2
|
+
// @param {integer} $px - Number of pixels to be converted.
|
3
|
+
// @param {integer} $base-font-size - Default value for 1em in browser.
|
4
|
+
//
|
5
|
+
// Usage: em(12px);
|
6
|
+
@function em($px, $base-font-size: 16px) {
|
7
|
+
@if (unitless($px)) {
|
8
|
+
@warn "Assuming #{$px} to be in pixels, attempting to convert it into pixels for you";
|
9
|
+
@return px2em($px + 0px); // That may fail.
|
10
|
+
} @else if (unit($px) == em) {
|
11
|
+
@return $px;
|
12
|
+
}
|
13
|
+
@return ($px / $base-font-size) * 1em;
|
14
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
// Use media queries like this:
|
2
|
+
// @include bp(mobile) {
|
3
|
+
// background: blue
|
4
|
+
// }
|
5
|
+
@mixin bp($point) {
|
6
|
+
|
7
|
+
$bp-laptop: "(min-width: 75em)";
|
8
|
+
$bp-tablet: "(min-width: 48em)";
|
9
|
+
$bp-mobile: "(min-width: 20em)";
|
10
|
+
|
11
|
+
@if $point == mobile {
|
12
|
+
@media #{$bp-mobile} { @content; }
|
13
|
+
}
|
14
|
+
@else if $point == tablet {
|
15
|
+
@media #{$bp-tablet} { @content; }
|
16
|
+
}
|
17
|
+
@else if $point == laptop {
|
18
|
+
@media #{$bp-laptop} { @content; }
|
19
|
+
}
|
20
|
+
|
21
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
// Define defaults for each variable.
|
2
|
+
$heading-font-family: 'Roboto', sans-serif;
|
3
|
+
$base-font-family: 'Open Sans', sans-serif;
|
4
|
+
$base-font-size: 1rem !default;
|
5
|
+
$base-font-weight: 400 !default;
|
6
|
+
$small-font-size: $base-font-size * 0.875 !default;
|
7
|
+
$base-line-height: 1.5 !default;
|
8
|
+
|
9
|
+
$spacing-unit: 2em !default;
|
10
|
+
|
11
|
+
$text-color: #111 !default;
|
12
|
+
$background-color: #eee;
|
13
|
+
$link-color: #6200ee !default;
|
14
|
+
$header-color: #F44336;
|
15
|
+
$page-color: #757575;
|
16
|
+
$brand-color: #6200ee;
|
17
|
+
$icon-hover-color: darken($header-color, 40%);
|
18
|
+
|
19
|
+
$grey-color: #828282 !default;
|
20
|
+
$grey-color-light: lighten($grey-color, 40%) !default;
|
21
|
+
$grey-color-dark: darken($grey-color, 25%) !default;
|
22
|
+
|
23
|
+
// Width of the content area
|
24
|
+
$content-width: 55em !default;
|
25
|
+
$mobile: 48em !default;
|
26
|
+
$laptop: 75em !default;
|
data/_sass/jekyllcv.scss
ADDED
@@ -0,0 +1,138 @@
|
|
1
|
+
/**
|
2
|
+
* Reset some basic elements
|
3
|
+
*/
|
4
|
+
body, h1, h2, h3, h4, h5, h6,
|
5
|
+
p, blockquote, pre, hr,
|
6
|
+
dl, dd, ol, ul, figure {
|
7
|
+
margin: 0;
|
8
|
+
padding: 0;
|
9
|
+
}
|
10
|
+
|
11
|
+
/**
|
12
|
+
* Basic styling
|
13
|
+
*/
|
14
|
+
body {
|
15
|
+
font: $base-font-weight #{$base-font-size}/#{$base-line-height} $base-font-family;
|
16
|
+
color: $text-color;
|
17
|
+
background-color: $background-color;
|
18
|
+
-webkit-text-size-adjust: 100%;
|
19
|
+
-webkit-font-feature-settings: "kern" 1;
|
20
|
+
-moz-font-feature-settings: "kern" 1;
|
21
|
+
-o-font-feature-settings: "kern" 1;
|
22
|
+
font-feature-settings: "kern" 1;
|
23
|
+
font-kerning: normal;
|
24
|
+
}
|
25
|
+
|
26
|
+
/**
|
27
|
+
* Set `margin-bottom` to maintain vertical rhythm
|
28
|
+
*/
|
29
|
+
h1, h2, h3, h4, h5, h6,
|
30
|
+
p, blockquote, pre,
|
31
|
+
ul, ol, dl, figure,
|
32
|
+
%vertical-rhythm {
|
33
|
+
margin-bottom: $spacing-unit / 2;
|
34
|
+
}
|
35
|
+
|
36
|
+
/**
|
37
|
+
* Images
|
38
|
+
*/
|
39
|
+
img {
|
40
|
+
max-width: 100%;
|
41
|
+
vertical-align: middle;
|
42
|
+
}
|
43
|
+
|
44
|
+
/**
|
45
|
+
* Figures
|
46
|
+
*/
|
47
|
+
figure > img {
|
48
|
+
display: block;
|
49
|
+
}
|
50
|
+
|
51
|
+
figcaption {
|
52
|
+
font-size: $small-font-size;
|
53
|
+
}
|
54
|
+
|
55
|
+
/**
|
56
|
+
* Lists
|
57
|
+
*/
|
58
|
+
ul, ol {
|
59
|
+
margin-left: $spacing-unit;
|
60
|
+
}
|
61
|
+
|
62
|
+
li {
|
63
|
+
> ul,
|
64
|
+
> ol {
|
65
|
+
margin-bottom: 0;
|
66
|
+
}
|
67
|
+
}
|
68
|
+
|
69
|
+
/**
|
70
|
+
* Headings
|
71
|
+
*/
|
72
|
+
h1, h2, h3, h4, h5, h6 {
|
73
|
+
font-weight: bold;
|
74
|
+
font-family: $heading-font-family;
|
75
|
+
letter-spacing: 1px;
|
76
|
+
}
|
77
|
+
|
78
|
+
h2 {
|
79
|
+
margin: 0.75em 0 0.5em;
|
80
|
+
}
|
81
|
+
|
82
|
+
/**
|
83
|
+
* Links
|
84
|
+
*/
|
85
|
+
a {
|
86
|
+
color: $brand-color;
|
87
|
+
|
88
|
+
&:visited {
|
89
|
+
color: darken($brand-color, 15%);
|
90
|
+
}
|
91
|
+
|
92
|
+
&:hover {
|
93
|
+
color: $text-color;
|
94
|
+
text-decoration: none;
|
95
|
+
}
|
96
|
+
}
|
97
|
+
|
98
|
+
/**
|
99
|
+
* Blockquotes
|
100
|
+
*/
|
101
|
+
blockquote {
|
102
|
+
color: $grey-color;
|
103
|
+
border-left: 4px solid $grey-color-light;
|
104
|
+
padding-left: $spacing-unit / 2;
|
105
|
+
font-size: 18px;
|
106
|
+
letter-spacing: -1px;
|
107
|
+
font-style: italic;
|
108
|
+
|
109
|
+
> :last-child {
|
110
|
+
margin-bottom: 0;
|
111
|
+
}
|
112
|
+
}
|
113
|
+
|
114
|
+
/**
|
115
|
+
* Code formatting
|
116
|
+
*/
|
117
|
+
pre,
|
118
|
+
code {
|
119
|
+
font-size: 1rem;
|
120
|
+
border: 1px solid $grey-color-light;
|
121
|
+
border-radius: 3px;
|
122
|
+
background-color: #eef;
|
123
|
+
}
|
124
|
+
|
125
|
+
code {
|
126
|
+
padding: 1px 5px;
|
127
|
+
}
|
128
|
+
|
129
|
+
pre {
|
130
|
+
padding: 0.5rem 0.75rem;
|
131
|
+
overflow-x: auto;
|
132
|
+
|
133
|
+
> code {
|
134
|
+
border: 0;
|
135
|
+
padding-right: 0;
|
136
|
+
padding-left: 0;
|
137
|
+
}
|
138
|
+
}
|
@@ -0,0 +1,118 @@
|
|
1
|
+
/**
|
2
|
+
* Clearfix
|
3
|
+
*/
|
4
|
+
%clearfix:after {
|
5
|
+
content: "";
|
6
|
+
display: table;
|
7
|
+
clear: both;
|
8
|
+
}
|
9
|
+
|
10
|
+
/**
|
11
|
+
* Utility classes
|
12
|
+
*/
|
13
|
+
.wrapper {
|
14
|
+
max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));
|
15
|
+
margin: 0 auto;
|
16
|
+
padding: 0 0.5em;
|
17
|
+
@extend %clearfix;
|
18
|
+
|
19
|
+
@include bp(tablet) {
|
20
|
+
padding: 0 1em;
|
21
|
+
}
|
22
|
+
|
23
|
+
@include bp(laptop) {
|
24
|
+
max-width: calc(#{$content-width} - (#{$spacing-unit}));
|
25
|
+
padding: 0 (#{$spacing-unit} / 2)
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
.screen-reader-text {
|
30
|
+
border: 0;
|
31
|
+
clip: rect(0 0 0 0);
|
32
|
+
height: 1px;
|
33
|
+
margin: -1px;
|
34
|
+
overflow: hidden;
|
35
|
+
padding: 0;
|
36
|
+
position: absolute;
|
37
|
+
width: 1px;
|
38
|
+
text-indent: -9999px;
|
39
|
+
}
|
40
|
+
|
41
|
+
/**
|
42
|
+
* Site header
|
43
|
+
*/
|
44
|
+
.header {
|
45
|
+
position: absolute;
|
46
|
+
top: 0;
|
47
|
+
width: 100%;
|
48
|
+
height: em(300px);
|
49
|
+
background-color: $header-color;
|
50
|
+
border-bottom: 1px solid #e53935;
|
51
|
+
|
52
|
+
&__name {
|
53
|
+
color: #fff;
|
54
|
+
padding: 2em 0 0;
|
55
|
+
text-align: center;
|
56
|
+
}
|
57
|
+
|
58
|
+
&__social {
|
59
|
+
max-width: em(225px);
|
60
|
+
margin: 0 auto;
|
61
|
+
li {
|
62
|
+
list-style: none;
|
63
|
+
display: inline-block;
|
64
|
+
margin: 0 0 1.5em;
|
65
|
+
}
|
66
|
+
a {
|
67
|
+
transition: fill .3s cubic-bezier(.455,.03,.515,.955);
|
68
|
+
padding: 0 .5em;
|
69
|
+
fill: #fff;
|
70
|
+
&:hover {
|
71
|
+
fill: $icon-hover-color;
|
72
|
+
}
|
73
|
+
}
|
74
|
+
}
|
75
|
+
}
|
76
|
+
|
77
|
+
/**
|
78
|
+
* Site body
|
79
|
+
*/
|
80
|
+
.content {
|
81
|
+
position: relative;
|
82
|
+
top: em(200px);
|
83
|
+
left: 0;
|
84
|
+
right: 0;
|
85
|
+
}
|
86
|
+
|
87
|
+
.resume {
|
88
|
+
color: $page-color;
|
89
|
+
background-color: #fff;
|
90
|
+
border-radius: 3px;
|
91
|
+
box-shadow: 0 2px 5px rgba(0,0,0,0.26);
|
92
|
+
z-index: 0;
|
93
|
+
@include bp(mobile) {
|
94
|
+
padding: em(30px);
|
95
|
+
}
|
96
|
+
@include bp(tablet) {
|
97
|
+
padding: em(60px);
|
98
|
+
}
|
99
|
+
}
|
100
|
+
|
101
|
+
/**
|
102
|
+
* Resume sections
|
103
|
+
*/
|
104
|
+
.section {
|
105
|
+
padding-bottom: 1em;
|
106
|
+
}
|
107
|
+
|
108
|
+
.section__title {
|
109
|
+
color: $header-color;
|
110
|
+
}
|
111
|
+
|
112
|
+
/**
|
113
|
+
* Site footer
|
114
|
+
*/
|
115
|
+
.message {
|
116
|
+
text-align: center;
|
117
|
+
padding: 2em 0;
|
118
|
+
}
|
@@ -0,0 +1,71 @@
|
|
1
|
+
/**
|
2
|
+
* Syntax highlighting styles
|
3
|
+
*/
|
4
|
+
.highlight {
|
5
|
+
background: #fff;
|
6
|
+
@extend %vertical-rhythm;
|
7
|
+
|
8
|
+
.highlighter-rouge & {
|
9
|
+
background: #eef;
|
10
|
+
}
|
11
|
+
|
12
|
+
.c { color: #998; font-style: italic } // Comment
|
13
|
+
.err { color: #a61717; background-color: #e3d2d2 } // Error
|
14
|
+
.k { font-weight: bold } // Keyword
|
15
|
+
.o { font-weight: bold } // Operator
|
16
|
+
.cm { color: #998; font-style: italic } // Comment.Multiline
|
17
|
+
.cp { color: #999; font-weight: bold } // Comment.Preproc
|
18
|
+
.c1 { color: #998; font-style: italic } // Comment.Single
|
19
|
+
.cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
|
20
|
+
.gd { color: #000; background-color: #fdd } // Generic.Deleted
|
21
|
+
.gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
|
22
|
+
.ge { font-style: italic } // Generic.Emph
|
23
|
+
.gr { color: #a00 } // Generic.Error
|
24
|
+
.gh { color: #999 } // Generic.Heading
|
25
|
+
.gi { color: #000; background-color: #dfd } // Generic.Inserted
|
26
|
+
.gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
|
27
|
+
.go { color: #888 } // Generic.Output
|
28
|
+
.gp { color: #555 } // Generic.Prompt
|
29
|
+
.gs { font-weight: bold } // Generic.Strong
|
30
|
+
.gu { color: #aaa } // Generic.Subheading
|
31
|
+
.gt { color: #a00 } // Generic.Traceback
|
32
|
+
.kc { font-weight: bold } // Keyword.Constant
|
33
|
+
.kd { font-weight: bold } // Keyword.Declaration
|
34
|
+
.kp { font-weight: bold } // Keyword.Pseudo
|
35
|
+
.kr { font-weight: bold } // Keyword.Reserved
|
36
|
+
.kt { color: #458; font-weight: bold } // Keyword.Type
|
37
|
+
.m { color: #099 } // Literal.Number
|
38
|
+
.s { color: #d14 } // Literal.String
|
39
|
+
.na { color: #008080 } // Name.Attribute
|
40
|
+
.nb { color: #0086B3 } // Name.Builtin
|
41
|
+
.nc { color: #458; font-weight: bold } // Name.Class
|
42
|
+
.no { color: #008080 } // Name.Constant
|
43
|
+
.ni { color: #800080 } // Name.Entity
|
44
|
+
.ne { color: #900; font-weight: bold } // Name.Exception
|
45
|
+
.nf { color: #900; font-weight: bold } // Name.Function
|
46
|
+
.nn { color: #555 } // Name.Namespace
|
47
|
+
.nt { color: #000080 } // Name.Tag
|
48
|
+
.nv { color: #008080 } // Name.Variable
|
49
|
+
.ow { font-weight: bold } // Operator.Word
|
50
|
+
.w { color: #bbb } // Text.Whitespace
|
51
|
+
.mf { color: #099 } // Literal.Number.Float
|
52
|
+
.mh { color: #099 } // Literal.Number.Hex
|
53
|
+
.mi { color: #099 } // Literal.Number.Integer
|
54
|
+
.mo { color: #099 } // Literal.Number.Oct
|
55
|
+
.sb { color: #d14 } // Literal.String.Backtick
|
56
|
+
.sc { color: #d14 } // Literal.String.Char
|
57
|
+
.sd { color: #d14 } // Literal.String.Doc
|
58
|
+
.s2 { color: #d14 } // Literal.String.Double
|
59
|
+
.se { color: #d14 } // Literal.String.Escape
|
60
|
+
.sh { color: #d14 } // Literal.String.Heredoc
|
61
|
+
.si { color: #d14 } // Literal.String.Interpol
|
62
|
+
.sx { color: #d14 } // Literal.String.Other
|
63
|
+
.sr { color: #009926 } // Literal.String.Regex
|
64
|
+
.s1 { color: #d14 } // Literal.String.Single
|
65
|
+
.ss { color: #990073 } // Literal.String.Symbol
|
66
|
+
.bp { color: #999 } // Name.Builtin.Pseudo
|
67
|
+
.vc { color: #008080 } // Name.Variable.Class
|
68
|
+
.vg { color: #008080 } // Name.Variable.Global
|
69
|
+
.vi { color: #008080 } // Name.Variable.Instance
|
70
|
+
.il { color: #099 } // Literal.Number.Integer.Long
|
71
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
.inner {
|
2
|
+
box-shadow: none;
|
3
|
+
}
|
4
|
+
|
5
|
+
.header {
|
6
|
+
position: relative;
|
7
|
+
border: none;
|
8
|
+
height: 175px;
|
9
|
+
}
|
10
|
+
|
11
|
+
.header__name {
|
12
|
+
color: #fff;
|
13
|
+
}
|
14
|
+
|
15
|
+
.header__social {
|
16
|
+
display: none;
|
17
|
+
}
|
18
|
+
|
19
|
+
.content {
|
20
|
+
top: 0;
|
21
|
+
}
|
22
|
+
|
23
|
+
.message {
|
24
|
+
display: none;
|
25
|
+
}
|
@@ -0,0 +1,73 @@
|
|
1
|
+
<svg display="none" width="0" height="0" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
2
|
+
<defs>
|
3
|
+
<symbol id="icon-chevron-down" viewBox="0 0 1024 1024">
|
4
|
+
<title>chevron-down</title>
|
5
|
+
<path class="path1" d="M231.219 386.458c22.323-22.835 53.402-24.627 80.691 0l200.090 191.846 200.090-191.846c27.29-24.627 58.419-22.835 80.589 0 22.323 22.784 20.89 61.286 0 82.688-20.787 21.402-240.384 230.502-240.384 230.502-11.11 11.418-25.702 17.152-40.294 17.152s-29.184-5.734-40.397-17.152c0 0-219.494-209.101-240.384-230.502-20.941-21.402-22.323-59.904 0-82.688z"></path>
|
6
|
+
</symbol>
|
7
|
+
<symbol id="icon-chevron-left" viewBox="0 0 1024 1024">
|
8
|
+
<title>chevron-left</title>
|
9
|
+
<path class="path1" d="M637.542 231.219c22.835 22.323 24.627 53.402 0 80.691l-191.846 200.090 191.846 200.090c24.627 27.29 22.835 58.419 0 80.589-22.784 22.323-61.286 20.89-82.688 0-21.402-20.787-230.502-240.384-230.502-240.384-11.418-11.11-17.152-25.702-17.152-40.294s5.734-29.184 17.152-40.397c0 0 209.101-219.494 230.502-240.384 21.402-20.941 59.904-22.323 82.688 0z"></path>
|
10
|
+
</symbol>
|
11
|
+
<symbol id="icon-chevron-right" viewBox="0 0 1024 1024">
|
12
|
+
<title>chevron-right</title>
|
13
|
+
<path class="path1" d="M469.146 231.219c21.402 20.89 230.502 240.384 230.502 240.384 11.418 11.213 17.152 25.805 17.152 40.397s-5.734 29.184-17.152 40.294c0 0-209.101 219.597-230.502 240.384-21.402 20.89-59.904 22.323-82.688 0-22.835-22.221-24.627-53.299 0-80.589l191.846-200.090-191.846-200.090c-24.627-27.29-22.835-58.419 0-80.691 22.784-22.323 61.286-20.941 82.688 0z"></path>
|
14
|
+
</symbol>
|
15
|
+
<symbol id="icon-chevron-up" viewBox="0 0 1024 1024">
|
16
|
+
<title>chevron-up</title>
|
17
|
+
<path class="path1" d="M792.781 637.542c-22.323 22.835-53.402 24.627-80.691 0l-200.090-191.846-200.090 191.846c-27.29 24.627-58.419 22.835-80.589 0-22.323-22.784-20.89-61.286 0-82.688 20.787-21.402 240.384-230.502 240.384-230.502 11.11-11.418 25.702-17.152 40.294-17.152s29.184 5.734 40.397 17.152c0 0 219.494 209.101 240.384 230.502 20.941 21.402 22.323 59.904 0 82.688z"></path>
|
18
|
+
</symbol>
|
19
|
+
<symbol id="icon-code" viewBox="0 0 1024 1024">
|
20
|
+
<title>code</title>
|
21
|
+
<path class="path1" d="M292.813 755.2c-12.083 0-24.269-4.25-33.997-12.902l-259.072-230.298 273.459-243.098c21.094-18.688 53.453-16.896 72.243 4.25s16.896 53.504-4.25 72.294l-187.341 166.554 172.954 153.702c21.146 18.79 23.040 51.149 4.25 72.294-10.086 11.418-24.166 17.203-38.246 17.203zM750.797 755.098l273.459-243.098-259.072-230.298c-21.146-18.79-53.504-16.896-72.243 4.25-18.79 21.146-16.896 53.504 4.25 72.294l172.954 153.754-187.341 166.502c-21.146 18.79-23.040 51.149-4.25 72.294 10.086 11.418 24.166 17.203 38.246 17.203 12.083 0 24.269-4.25 33.997-12.902zM511.283 827.648l102.4-614.4c4.659-27.904-14.182-54.272-42.086-58.931-28.006-4.71-54.323 14.182-58.88 42.086l-102.4 614.4c-4.659 27.904 14.182 54.272 42.086 58.931 2.867 0.461 5.632 0.666 8.448 0.666 24.576 0 46.285-17.766 50.432-42.752z"></path>
|
22
|
+
</symbol>
|
23
|
+
<symbol id="icon-cross" viewBox="0 0 1024 1024">
|
24
|
+
<title>cross</title>
|
25
|
+
<path class="path1" d="M734.618 760.269c-24.013 24.013-62.925 24.013-86.886 0l-135.731-155.136-135.731 155.085c-24.013 24.013-62.925 24.013-86.886 0-24.013-24.013-24.013-62.925 0-86.886l141.21-161.28-141.261-161.382c-24.013-24.013-24.013-62.874 0-86.886s62.874-24.013 86.886 0l135.782 155.187 135.731-155.187c24.013-24.013 62.874-24.013 86.886 0s24.013 62.925 0 86.886l-141.21 161.382 141.21 161.28c24.013 24.013 24.013 62.925 0 86.938z"></path>
|
26
|
+
</symbol>
|
27
|
+
<symbol id="icon-magnifying-glass" viewBox="0 0 1024 1024">
|
28
|
+
<title>magnifying-glass</title>
|
29
|
+
<path class="path1" d="M898.304 791.91l-193.485-193.485c29.184-47.872 45.978-104.192 45.978-164.352 0-174.95-151.603-326.502-326.554-326.502-174.95-0.051-316.723 141.773-316.723 316.723 0 174.899 151.603 326.502 326.502 326.502 58.214 0 112.64-15.821 159.488-43.213l194.509 194.611c19.046 18.995 49.92 18.995 68.915 0l48.282-48.282c18.995-18.995 12.083-43.008-6.912-62.003zM205.005 424.294c0-121.139 98.15-219.29 219.238-219.29 121.139 0 229.069 107.878 229.069 229.069 0 121.088-98.202 219.29-219.29 219.29-121.139-0.051-229.018-107.981-229.018-229.069z"></path>
|
30
|
+
</symbol>
|
31
|
+
<symbol id="icon-mail" viewBox="0 0 1024 1024">
|
32
|
+
<title>mail</title>
|
33
|
+
<path class="path1" d="M80.589 270.643c24.986 13.414 371.098 199.373 384 206.285s29.594 10.189 46.387 10.189c16.794 0 33.485-3.277 46.387-10.189s359.014-192.87 384-206.285c25.037-13.466 48.691-65.843 2.765-65.843h-866.253c-45.926 0-22.272 52.378 2.714 65.843zM952.986 383.437c-28.416 14.797-378.214 197.069-395.622 206.182s-29.594 10.189-46.387 10.189-28.979-1.075-46.387-10.189-365.21-191.437-393.626-206.234c-19.968-10.445-19.763 1.792-19.763 11.213s0 373.402 0 373.402c0 21.504 28.979 51.2 51.2 51.2h819.2c22.221 0 51.2-29.696 51.2-51.2 0 0 0-363.93 0-373.35s0.205-21.658-19.814-11.213z"></path>
|
34
|
+
</symbol>
|
35
|
+
<symbol id="icon-menu" viewBox="0 0 1024 1024">
|
36
|
+
<title>menu</title>
|
37
|
+
<path class="path1" d="M839.68 460.8h-655.36c-28.262 0-30.72 22.886-30.72 51.2s2.458 51.2 30.72 51.2h655.36c28.262 0 30.72-22.886 30.72-51.2s-2.458-51.2-30.72-51.2zM839.68 665.6h-655.36c-28.262 0-30.72 22.886-30.72 51.2s2.458 51.2 30.72 51.2h655.36c28.262 0 30.72-22.886 30.72-51.2s-2.458-51.2-30.72-51.2zM184.32 358.4h655.36c28.262 0 30.72-22.886 30.72-51.2s-2.458-51.2-30.72-51.2h-655.36c-28.262 0-30.72 22.886-30.72 51.2s2.458 51.2 30.72 51.2z"></path>
|
38
|
+
</symbol>
|
39
|
+
<symbol id="icon-minus" viewBox="0 0 1024 1024">
|
40
|
+
<title>minus</title>
|
41
|
+
<path class="path1" d="M819.2 512c0 28.314-2.458 51.2-30.771 51.2h-552.858c-28.262 0-30.771-22.886-30.771-51.2s2.509-51.2 30.771-51.2h552.909c28.262 0 30.72 22.886 30.72 51.2z"></path>
|
42
|
+
</symbol>
|
43
|
+
<symbol id="icon-plus" viewBox="0 0 1024 1024">
|
44
|
+
<title>plus</title>
|
45
|
+
<path class="path1" d="M819.2 512c0 28.314-2.458 51.2-30.771 51.2h-225.229v225.229c0 28.262-22.886 30.771-51.2 30.771s-51.2-2.509-51.2-30.771v-225.229h-225.229c-28.262 0-30.771-22.886-30.771-51.2s2.509-51.2 30.771-51.2h225.229v-225.229c0-28.314 22.886-30.771 51.2-30.771s51.2 2.458 51.2 30.771v225.229h225.229c28.314 0 30.771 22.886 30.771 51.2z"></path>
|
46
|
+
</symbol>
|
47
|
+
<symbol id="icon-behance" viewBox="0 0 1024 1024">
|
48
|
+
<title>behance</title>
|
49
|
+
<path class="path1" d="M413.286 476.211c0 0 96.87-7.526 96.87-125.901 0-118.528-79.258-176.179-179.712-176.179h-330.445v661.811h330.445c0 0 201.779 6.605 201.779-195.379-0.051-0.051 8.755-164.352-118.938-164.352zM145.613 291.686h184.832c0 0 44.954 0 44.954 68.813 0 68.915-26.419 78.899-56.422 78.899h-173.363v-147.712zM321.075 718.285h-175.462v-176.896h184.832c0 0 66.97-0.922 66.97 90.88 0 77.414-50.022 85.453-76.339 86.016zM801.229 342.426c-244.275 0-244.070 254.31-244.070 254.31s-16.691 252.979 244.070 252.979c0 0 217.242 13.005 217.242-175.974h-111.718c0 0 3.686 71.219-101.786 71.219 0 0-111.821 7.782-111.821-115.2h328.858c0.051-0.051 36.301-287.334-220.774-287.334zM900.608 541.389h-208.589c0 0 13.619-101.99 111.718-101.99s96.87 101.99 96.87 101.99zM926.566 212.992h-261.99v81.613h261.99v-81.613z"></path>
|
50
|
+
</symbol>
|
51
|
+
<symbol id="icon-dribbble" viewBox="0 0 1024 1024">
|
52
|
+
<title>dribbble</title>
|
53
|
+
<path class="path1" d="M489.728 379.955c-69.53-123.597-143.923-224.41-149.35-231.834-112.179 53.043-195.891 156.416-222.054 280.934 10.547 0.205 178.278 2.202 371.405-49.101zM539.802 515.123c5.222-1.69 10.547-3.277 15.821-4.813-10.086-22.886-21.094-45.824-32.614-68.403-207.155 62.054-405.914 57.549-412.928 57.344-0.154 4.301-0.358 8.499-0.358 12.8 0 103.373 39.066 197.683 103.219 268.902l-0.256-0.307c0 0 110.080-195.277 327.117-265.523zM264.755 829.133v-0.205c-2.97-2.304-6.144-4.403-9.114-6.912 5.427 4.352 9.114 7.117 9.114 7.117zM415.642 121.446c-0.358 0.102-0.768 0.205-0.768 0.205 0.307-0.102 0.717-0.102 0.717-0.102l0.051-0.102zM777.677 210.125c-70.861-62.362-163.789-100.403-265.677-100.403-32.717 0-64.41 3.994-94.822 11.315 6.144 8.192 81.664 108.493 150.426 234.701 151.654-56.781 208.947-143.974 210.074-145.613zM512 983.040c-260.096 0-470.989-210.893-470.989-470.989-0.051-260.198 210.842-471.091 470.989-471.091 260.198 0 471.040 210.893 471.040 471.091 0 260.096-210.842 470.989-471.040 470.989zM580.403 577.843c-236.083 82.278-314.061 247.706-315.648 251.085 68.301 53.299 153.907 85.299 247.194 85.299 55.706 0 108.8-11.315 157.030-31.795-5.939-35.277-29.338-158.515-85.965-305.51-0.819 0.307-1.69 0.614-2.611 0.922zM598.528 415.744c9.421 19.098 18.33 38.605 26.778 58.317 3.021 6.912 5.837 13.926 8.704 20.787 138.906-17.51 275.712 12.186 280.218 13.107-0.973-95.386-35.123-182.886-91.494-251.494-0.922 1.178-65.485 94.362-224.205 159.283zM658.483 558.336c52.787 145.203 74.189 263.27 78.285 287.283 90.317-60.979 154.522-157.696 172.39-269.824-7.987-2.56-120.627-38.246-250.675-17.459z"></path>
|
54
|
+
</symbol>
|
55
|
+
<symbol id="icon-github" viewBox="0 0 1024 1024">
|
56
|
+
<title>github</title>
|
57
|
+
<path class="path1" d="M674.816 579.021c-36.762 0-66.56 41.318-66.56 92.109 0 50.893 29.798 92.211 66.56 92.211s66.56-41.318 66.56-92.211c-0.051-50.79-29.798-92.109-66.56-92.109zM906.547 339.251c7.629-18.688 7.936-124.877-32.512-226.611 0 0-92.723 10.189-233.011 106.496-29.44-8.192-79.258-12.186-128.973-12.186-49.818 0-99.584 3.994-129.024 12.186-140.339-96.307-233.062-106.496-233.062-106.496-40.397 101.734-39.987 207.923-32.461 226.611-47.514 51.61-76.544 113.613-76.544 198.195 0 367.923 305.306 373.811 382.31 373.811 17.51 0 52.122 0.102 88.781 0.102 36.608 0 71.27-0.102 88.678-0.102 77.107 0 382.31-5.888 382.31-373.811 0-84.582-28.979-146.586-76.493-198.195zM513.434 866.048h-2.867c-193.075 0-343.501-22.989-343.501-210.688 0-45.005 15.872-86.682 53.606-121.293 62.822-57.702 169.216-27.187 289.894-27.187 0.512 0 1.024 0 1.485 0 0.512 0 0.922 0 1.382 0 120.678 0 227.123-30.515 289.997 27.187 37.632 34.611 53.504 76.288 53.504 121.293 0 187.699-150.374 210.688-343.501 210.688zM349.235 579.021c-36.762 0-66.56 41.318-66.56 92.109 0 50.893 29.798 92.211 66.56 92.211 36.813 0 66.611-41.318 66.611-92.211 0-50.79-29.798-92.109-66.611-92.109z"></path>
|
58
|
+
</symbol>
|
59
|
+
<symbol id="icon-linkedin" viewBox="0 0 1024 1024">
|
60
|
+
<title>linkedin</title>
|
61
|
+
<path class="path1" d="M256 153.6c0 54.374-36.352 101.171-102.451 101.171-62.208 0-102.349-44.134-102.349-98.509 0-55.808 38.912-105.062 102.4-105.062s101.171 46.592 102.4 102.4zM51.2 972.8v-665.6h204.8v665.6h-204.8z"></path>
|
62
|
+
<path class="path2" d="M358.4 534.733c0-79.104-2.611-145.203-5.222-202.291h184.013l9.114 88.218h3.891c25.907-41.523 89.395-102.4 195.686-102.4 129.638 0 226.918 86.784 226.918 273.51v381.030h-204.8v-351.283c0-81.613-31.078-143.872-102.4-143.872-54.374 0-81.613 44.032-95.898 80.333-5.222 13.005-6.502 31.13-6.502 49.306v365.517h-204.8v-438.067z"></path>
|
63
|
+
</symbol>
|
64
|
+
<symbol id="icon-twitter" viewBox="0 0 1024 1024">
|
65
|
+
<title>twitter</title>
|
66
|
+
<path class="path1" d="M886.579 319.795c0.41 8.294 0.563 16.691 0.563 24.986 0 255.488-194.406 549.99-549.888 549.99-109.21 0-210.739-32-296.294-86.886 15.155 1.792 30.515 2.714 46.080 2.714 90.624 0 173.926-30.925 240.026-82.688-84.531-1.587-155.955-57.395-180.531-134.195 11.776 2.202 23.91 3.379 36.352 3.379 17.664 0 34.765-2.304 50.944-6.707-88.422-17.818-155.034-95.898-155.034-189.594 0-0.819 0-1.587 0-2.406 26.061 14.49 55.91 23.194 87.552 24.218-51.866-34.714-86.016-93.798-86.016-160.922 0-35.379 9.523-68.608 26.214-97.178 95.283 116.992 237.773 193.894 398.387 201.984-3.277-14.182-4.966-28.877-4.966-44.083 0-106.701 86.477-193.178 193.229-193.178 55.603 0 105.83 23.398 141.107 60.979 43.981-8.704 85.35-24.781 122.726-46.899-14.438 45.107-45.107 82.995-84.992 106.906 39.117-4.71 76.288-15.002 111.002-30.413-25.907 38.81-58.675 72.806-96.461 99.994z"></path>
|
67
|
+
</symbol>
|
68
|
+
<symbol id="icon-codepen" viewBox="0 0 1024 1024">
|
69
|
+
<title>codepen</title>
|
70
|
+
<path class="path1" d="M123.429 668l344.571 229.714v-205.143l-190.857-127.429zM88 585.714l110.286-73.714-110.286-73.714v147.429zM556 897.714l344.571-229.714-153.714-102.857-190.857 127.429v205.143zM512 616l155.429-104-155.429-104-155.429 104zM277.143 458.857l190.857-127.429v-205.143l-344.571 229.714zM825.714 512l110.286 73.714v-147.429zM746.857 458.857l153.714-102.857-344.571-229.714v205.143zM1024 356v312q0 23.429-19.429 36.571l-468 312q-12 7.429-24.571 7.429t-24.571-7.429l-468-312q-19.429-13.143-19.429-36.571v-312q0-23.429 19.429-36.571l468-312q12-7.429 24.571-7.429t24.571 7.429l468 312q19.429 13.143 19.429 36.571z"></path>
|
71
|
+
</symbol>
|
72
|
+
</defs>
|
73
|
+
</svg>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-cv-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alek Snyder
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -24,18 +24,43 @@ dependencies:
|
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '3.3'
|
27
|
-
description: Simple Resume/CV Jekyll theme
|
27
|
+
description: Simple Resume/CV Jekyll theme using Material Design guidelines
|
28
28
|
email:
|
29
29
|
- asnyder0816@gmail.com
|
30
30
|
executables: []
|
31
31
|
extensions: []
|
32
32
|
extra_rdoc_files: []
|
33
|
-
files:
|
33
|
+
files:
|
34
|
+
- LICENSE.txt
|
35
|
+
- README.md
|
36
|
+
- _data/education.yml
|
37
|
+
- _data/professional-strengths.yml
|
38
|
+
- _data/references.yml
|
39
|
+
- _data/work-experience.yml
|
40
|
+
- _includes/footer.html
|
41
|
+
- _includes/head.html
|
42
|
+
- _includes/header.html
|
43
|
+
- _includes/icon-github.html
|
44
|
+
- _includes/icon-github.svg
|
45
|
+
- _includes/icon-twitter.html
|
46
|
+
- _includes/icon-twitter.svg
|
47
|
+
- _layouts/default.html
|
48
|
+
- _layouts/home.html
|
49
|
+
- _sass/core/_functions.scss
|
50
|
+
- _sass/core/_mixins.scss
|
51
|
+
- _sass/core/_variables.scss
|
52
|
+
- _sass/jekyllcv.scss
|
53
|
+
- _sass/partials/_base.scss
|
54
|
+
- _sass/partials/_layout.scss
|
55
|
+
- _sass/partials/_syntax-highlighting.scss
|
56
|
+
- assets/css/main.scss
|
57
|
+
- assets/css/print.css
|
58
|
+
- assets/svg/svgdefs.svg
|
34
59
|
homepage: https://github.com/aleksnyder/jekyll-cv
|
35
60
|
licenses:
|
36
61
|
- MIT
|
37
62
|
metadata: {}
|
38
|
-
post_install_message:
|
63
|
+
post_install_message:
|
39
64
|
rdoc_options: []
|
40
65
|
require_paths:
|
41
66
|
- lib
|
@@ -50,9 +75,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
50
75
|
- !ruby/object:Gem::Version
|
51
76
|
version: '0'
|
52
77
|
requirements: []
|
53
|
-
|
54
|
-
|
55
|
-
signing_key:
|
78
|
+
rubygems_version: 3.2.3
|
79
|
+
signing_key:
|
56
80
|
specification_version: 4
|
57
81
|
summary: Simple Resume/CV Jekyll theme using Material Design guidelines
|
58
82
|
test_files: []
|