jekyll-theme-lucas-minima 0.1.2 → 0.1.3
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/icon-links.html +48 -0
- data/_includes/icons/icon-dribbble.html +17 -0
- data/_includes/icons/icon-facebook.html +7 -0
- data/_includes/icons/icon-github.html +10 -0
- data/_includes/icons/icon-instagram.html +12 -0
- data/_includes/icons/icon-linkedin.html +9 -0
- data/_includes/icons/icon-medium.html +6 -0
- data/_includes/icons/icon-pdf.html +14 -0
- data/_includes/icons/icon-print.html +7 -0
- data/_includes/icons/icon-twitter.html +10 -0
- data/_includes/icons/icon-website.html +40 -0
- data/_includes/print-social-links.html +41 -0
- data/_sass/_base.scss +46 -0
- data/_sass/_layout.scss +74 -0
- data/_sass/_mixins.scss +103 -0
- data/_sass/_normalize.scss +426 -0
- data/_sass/_resume.scss +234 -0
- data/_sass/_variables.scss +21 -0
- metadata +19 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b416291b7e501186cdfd378fc0f1db7ce3f32a048ee7aa5882d05910eaec4194
|
|
4
|
+
data.tar.gz: 2d59bbf5710720abbc38363d21cdc88afba5e5a0e47a6fac0edde025788ee77c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7bec1d01807f7e85d29bbcd0f3facbfe88f8a369915b1ea5ba06311fff6d341057acb03e01189d3eae0804dab511ce7d7b7f4f8ed792ddb0faa4755c9b85f068
|
|
7
|
+
data.tar.gz: fd4c152ad99fe3bd75809fa150b4fdd6d8ebeb3214744e8972c2622e5840ae7e3f5e0a7b63a4bfa961a06005ae5b5e215e0110f15a0604649861d859cb1fcac2
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
<!-- and guess where these are defined? Yup, you guessed it: the _config.yml file -->
|
|
2
|
+
{% if site.resume_social_links %}
|
|
3
|
+
<ul class="icon-links">
|
|
4
|
+
|
|
5
|
+
<!-- GitHub link -->
|
|
6
|
+
{% if site.resume_social_links.resume_github_url %}
|
|
7
|
+
<li class="icon-link-item"><a href="{{ site.resume_social_links.resume_github_url }}" class="icon-link" itemprop="sameAs">{% include icons/icon-github.html %}</a></li>
|
|
8
|
+
{% endif %}
|
|
9
|
+
|
|
10
|
+
<!-- Twitter link -->
|
|
11
|
+
{% if site.resume_social_links.resume_twitter_url %}
|
|
12
|
+
<li class="icon-link-item"><a href="{{ site.resume_social_links.resume_twitter_url }}" class="icon-link" itemprop="sameAs">{% include icons/icon-twitter.html %}</a></li>
|
|
13
|
+
{% endif %}
|
|
14
|
+
|
|
15
|
+
<!-- Medium link -->
|
|
16
|
+
{% if site.resume_social_links.resume_medium_url %}
|
|
17
|
+
<li class="icon-link-item">
|
|
18
|
+
<a href="{{ site.resume_social_links.resume_medium_url }}" class="icon-link" itemprop="url">{% include icons/icon-medium.html %}</a>
|
|
19
|
+
</li>
|
|
20
|
+
{% endif %}
|
|
21
|
+
|
|
22
|
+
<!-- Dribbble link -->
|
|
23
|
+
{% if site.resume_social_links.resume_dribbble_url %}
|
|
24
|
+
<li class="icon-link-item"><a href="{{ site.resume_social_links.resume_dribbble_url }}" class="icon-link" itemprop="sameAs">{% include icons/icon-dribbble.html %}</a></li>
|
|
25
|
+
{% endif %}
|
|
26
|
+
|
|
27
|
+
<!-- Facebook link -->
|
|
28
|
+
{% if site.resume_social_links.resume_facebook_url %}
|
|
29
|
+
<li class="icon-link-item"><a href="{{ site.resume_social_links.resume_facebook_url }}" class="icon-link" itemprop="sameAs">{% include icons/icon-facebook.html %}</a></li>
|
|
30
|
+
{% endif %}
|
|
31
|
+
|
|
32
|
+
<!-- LinkedIn link -->
|
|
33
|
+
{% if site.resume_social_links.resume_linkedin_url %}
|
|
34
|
+
<li class="icon-link-item"><a href="{{ site.resume_social_links.resume_linkedin_url }}" class="icon-link" itemprop="sameAs">{% include icons/icon-linkedin.html %}</a></li>
|
|
35
|
+
{% endif %}
|
|
36
|
+
|
|
37
|
+
<!-- Instagram link -->
|
|
38
|
+
{% if site.resume_social_links.resume_instagram_url %}
|
|
39
|
+
<li class="icon-link-item"><a href="{{ site.resume_social_links.resume_instagram_url }}" class="icon-link" itemprop="sameAs">{% include icons/icon-instagram.html %}</a></li>
|
|
40
|
+
{% endif %}
|
|
41
|
+
|
|
42
|
+
<!-- Website link -->
|
|
43
|
+
{% if site.resume_social_links.resume_website_url %}
|
|
44
|
+
<li class="icon-link-item"><a href="{{ site.resume_social_links.resume_website_url }}" class="icon-link" itemprop="url">{% include icons/icon-website.html %}</a></li>
|
|
45
|
+
{% endif %}
|
|
46
|
+
|
|
47
|
+
</ul>
|
|
48
|
+
{% endif %}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<svg class="icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
2
|
+
viewBox="0 0 28 28" enable-background="new 0 0 28 28" xml:space="preserve" width="28">
|
|
3
|
+
<path id="Dribbble" fill="#D1CECC" d="M13.76,14.4c0.37-0.15,0.78-0.26,1.16-0.43c-0.18-0.34-0.35-0.73-0.5-1.04
|
|
4
|
+
c-0.06-0.11-0.1-0.25-0.2-0.33c-2.49,0.72-5.25,1.17-8.48,1.16c-0.06,2.6,0.88,4.41,2.12,5.79C9.3,17.33,11.22,15.46,13.76,14.4z
|
|
5
|
+
M15.45,15.38c-2.87,1.04-5.13,2.68-6.53,5.19c0.95,0.74,2.22,1.38,3.72,1.65c1.65,0.29,3.38-0.01,4.6-0.55
|
|
6
|
+
c-0.37-2.12-0.97-4.14-1.65-5.92C15.57,15.62,15.57,15.46,15.45,15.38z M10.47,6.52c-2.3,1.15-3.92,2.99-4.58,5.79
|
|
7
|
+
c2.87-0.04,5.42-0.39,7.66-1.04C12.58,9.64,11.6,8.01,10.47,6.52z M14.01,0C6.27,0,0,6.28,0,14.01s6.27,14.01,14.01,14.01
|
|
8
|
+
c7.05,0,12.89-5.21,13.86-12c0.1-0.46,0.14-0.94,0.13-1.43c0.01-0.2,0.01-0.39,0.01-0.58C28.02,6.28,21.75,0,14.01,0z M21.17,20.6
|
|
9
|
+
c-0.77,0.85-1.69,1.53-2.78,2.07c-1.09,0.55-2.33,0.97-3.8,1.04c-3.1,0.15-5.52-1.04-7.14-2.53c-1.66-1.53-2.92-3.59-3.14-6.56
|
|
10
|
+
c-0.11-1.58,0.2-2.97,0.67-4.15c0.48-1.23,1.06-2.14,1.84-3.01c1.11-1.2,2.61-2.26,4.5-2.78c0.68-0.19,1.39-0.31,2.1-0.36
|
|
11
|
+
c3.17-0.2,5.51,1.07,7.16,2.56c1.65,1.48,2.94,3.62,3.11,6.58C23.89,16.57,22.7,18.94,21.17,20.6z M17.05,14.98
|
|
12
|
+
c0.64,1.86,1.23,3.76,1.59,5.9c0.46-0.26,0.86-0.61,1.24-0.99c1.14-1.15,1.99-2.63,2.33-4.55C20.79,14.91,18.79,14.7,17.05,14.98z
|
|
13
|
+
M15.2,10.8c1.73-0.7,3.28-1.6,4.3-3.01c-1.36-1.14-3.32-2.18-5.82-2.05c-0.6,0.03-1.05,0.08-1.59,0.2
|
|
14
|
+
c0.93,1.37,1.93,2.79,2.73,4.22C14.94,10.38,15.02,10.63,15.2,10.8z M15.81,12.06c0.2,0.38,0.39,0.81,0.56,1.19
|
|
15
|
+
c0.06,0.14,0.08,0.31,0.2,0.41c1.93-0.22,4.06-0.06,5.74,0.28c-0.06-2.27-0.82-3.85-1.87-5.14C19.24,10.23,17.65,11.27,15.81,12.06z
|
|
16
|
+
"/>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg class="icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
2
|
+
viewBox="0 0 28 28" enable-background="new 0 0 28 28" xml:space="preserve" width="28">
|
|
3
|
+
<path id="Facebook" fill="#D1CECC" d="M14,0C6.27,0,0,6.27,0,14s6.27,14,14,14s14-6.27,14-14S21.73,0,14,0z M20.99,20.22
|
|
4
|
+
c0,0.43-0.35,0.77-0.77,0.77h-3.56v-5.42h1.82l0.27-2.11h-2.09v-1.35c0-0.61,0.17-1.03,1.05-1.03l1.12,0V9.2
|
|
5
|
+
c-0.19-0.03-0.86-0.08-1.63-0.08c-1.61,0-2.71,0.98-2.71,2.79v1.56h-1.82v2.11h1.82v5.42h-6.7c-0.43,0-0.77-0.35-0.77-0.77V7.78
|
|
6
|
+
c0-0.43,0.35-0.77,0.77-0.77h12.44c0.43,0,0.77,0.35,0.77,0.77V20.22z"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg class="icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
2
|
+
viewBox="0 0 28 28" enable-background="new 0 0 28 28" xml:space="preserve" width="28">
|
|
3
|
+
<path id="GitHub" fill-rule="evenodd" clip-rule="evenodd" fill="#D1CECC" d="M14.01,0C6.27,0-0.01,6.28-0.01,14.02
|
|
4
|
+
c0,6.19,4.02,11.45,9.59,13.3c0.7,0.13,0.96-0.3,0.96-0.68c0-0.33-0.01-1.21-0.02-2.38c-3.9,0.85-4.72-1.88-4.72-1.88
|
|
5
|
+
c-0.64-1.62-1.56-2.05-1.56-2.05c-1.27-0.87,0.1-0.85,0.1-0.85c1.41,0.1,2.15,1.44,2.15,1.44c1.25,2.14,3.28,1.52,4.08,1.16
|
|
6
|
+
c0.13-0.91,0.49-1.52,0.89-1.87c-3.11-0.35-6.38-1.56-6.38-6.93c0-1.53,0.55-2.78,1.44-3.76C6.37,9.17,5.89,7.74,6.65,5.81
|
|
7
|
+
c0,0,1.18-0.38,3.85,1.44c1.12-0.31,2.32-0.47,3.51-0.47c1.19,0.01,2.39,0.16,3.51,0.47c2.68-1.81,3.85-1.44,3.85-1.44
|
|
8
|
+
c0.76,1.93,0.28,3.35,0.14,3.71c0.9,0.98,1.44,2.23,1.44,3.76c0,5.38-3.28,6.57-6.4,6.92c0.5,0.43,0.95,1.29,0.95,2.6
|
|
9
|
+
c0,1.87-0.02,3.39-0.02,3.84c0,0.37,0.25,0.81,0.96,0.67c5.56-1.86,9.58-7.11,9.58-13.3C28.03,6.28,21.75,0,14.01,0z"/>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg class="icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
2
|
+
viewBox="0 0 28 28" enable-background="new 0 0 28 28" xml:space="preserve" width="28">
|
|
3
|
+
<path id="Instagram" fill="#D1CECC" d="M9.89,7.35h0.49v3.05H9.89V7.35z M7.35,8.26v2.15h0.49V7.44C7.55,7.58,7.35,7.89,7.35,8.26z
|
|
4
|
+
M18.22,10.3h1.36c0.51,0,0.92-0.41,0.92-0.92V8.38c0-0.51-0.41-0.92-0.92-0.92h-1.36c-0.51,0-0.92,0.41-0.92,0.92v0.99
|
|
5
|
+
C17.31,9.87,17.72,10.3,18.22,10.3z M8.2,7.35h0.49v3.05H8.2V7.35z M9.05,7.35h0.49v3.05H9.05V7.35z M14-0.01
|
|
6
|
+
C6.26-0.01-0.01,6.27-0.01,14S6.26,28.01,14,28.01S28.01,21.73,28.01,14S21.74-0.01,14-0.01z M6.63,7.93c0-0.71,0.58-1.3,1.3-1.3
|
|
7
|
+
h12.14c0.71,0,1.3,0.59,1.3,1.3v3.05h-4.56c-0.64-0.85-1.66-1.39-2.81-1.39s-2.16,0.55-2.81,1.39H6.63V7.93z M17.09,13.1
|
|
8
|
+
c0,1.7-1.39,3.09-3.09,3.09s-3.09-1.39-3.09-3.09s1.39-3.09,3.09-3.09C15.7,10.01,17.09,11.39,17.09,13.1z M21.37,20.07
|
|
9
|
+
c0,0.71-0.59,1.3-1.3,1.3H7.93c-0.71,0-1.3-0.59-1.3-1.3V11.5h4.24c-0.25,0.48-0.39,1.02-0.39,1.6c0,1.94,1.58,3.52,3.52,3.52
|
|
10
|
+
s3.52-1.58,3.52-3.52c0-0.57-0.14-1.12-0.39-1.6h4.24L21.37,20.07L21.37,20.07z M14,10.58c1.39,0,2.52,1.13,2.52,2.52
|
|
11
|
+
s-1.13,2.52-2.52,2.52s-2.52-1.13-2.52-2.52S12.61,10.58,14,10.58z"/>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg class="icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
2
|
+
viewBox="0 0 28 28" enable-background="new 0 0 28 28" xml:space="preserve" width="28">
|
|
3
|
+
<path id="LinkedIn" fill="#D1CECC" d="M18.82,15.09v3.61h-2.09v-3.37c0-0.85-0.3-1.42-1.06-1.42c-0.58,0-0.92,0.39-1.07,0.77
|
|
4
|
+
c-0.06,0.13-0.07,0.32-0.07,0.51v3.52h-2.09c0,0,0.03-5.71,0-6.3h2.09v0.89c0,0.01-0.01,0.01-0.01,0.02h0.01V13.3
|
|
5
|
+
c0.28-0.43,0.77-1.04,1.89-1.04C17.79,12.25,18.82,13.16,18.82,15.09z M9.18,18.7h2.09v-6.3H9.18V18.7z M10.24,9.36
|
|
6
|
+
c-0.72,0-1.19,0.47-1.19,1.09c0,0.61,0.45,1.09,1.16,1.09h0.01c0.73,0,1.18-0.48,1.18-1.09C11.39,9.84,10.95,9.36,10.24,9.36z
|
|
7
|
+
M28,14c0,7.73-6.27,14-14,14S0,21.73,0,14S6.27,0,14,0S28,6.27,28,14z M20.93,8.02c0-0.55-0.46-1-1.02-1H8.09
|
|
8
|
+
c-0.57,0-1.02,0.45-1.02,1v11.96c0,0.55,0.46,1,1.02,1h11.82c0.57,0,1.02-0.45,1.02-1V8.02z"/>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg class="icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 28 28" enable-background="new 0 0 28 28" xml:space="preserve" width="28">
|
|
2
|
+
<path id="Medium" fill="#D1CECC" d="M14,0C6.3,0,0,6.3,0,14s6.3,14,14,14s14-6.3,14-14S21.7,0,14,0z M11.2,19.5H7v-0.2l1.5-1.8
|
|
3
|
+
c0.2-0.2,0.2-0.4,0.2-0.6v-6.2c0-0.2,0-0.3-0.2-0.5L7.2,8.7V8.4h4.1l3.1,6.9l2.8-6.9H21v0.2l-1.1,1.1c-0.1,0.1-0.1,0.2-0.1,0.3v7.9
|
|
4
|
+
c0,0.1,0,0.2,0.1,0.3l1.1,1.1v0.2h-5.5v-0.2l1.1-1.1c0.1-0.1,0.1-0.1,0.1-0.3v-6.4l-3.1,8h-0.4l-3.7-8v5.4c0,0.2,0,0.5,0.2,0.6
|
|
5
|
+
l1.5,1.8C11.2,19.3,11.2,19.5,11.2,19.5z"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg class="icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
2
|
+
viewBox="0 0 28 28" enable-background="new 0 0 28 28" xml:space="preserve" width="28">
|
|
3
|
+
<path id="PDF" fill="#D1CECC" d="M12.28,15.27c0.46-0.94,0.81-1.83,1.05-2.66c0.52,1.29,0.97,2.09,1.35,2.41
|
|
4
|
+
c0.38,0.32,0.74,0.53,1.09,0.62c-0.75,0.11-1.45,0.24-2.1,0.38c-0.65,0.14-1.35,0.38-2.1,0.71L12.28,15.27z M28,14
|
|
5
|
+
c0,7.73-6.27,14-14,14S0,21.73,0,14S6.27,0,14,0S28,6.27,28,14z M20.94,9.37L17.47,5.9H7.06v16.2h13.89V9.37z M19.35,17.4
|
|
6
|
+
c-0.39-0.02-0.86-0.11-1.42-0.27s-1.1-0.36-1.62-0.61c-0.57,0.06-1.14,0.14-1.71,0.25c-0.57,0.11-1.13,0.23-1.67,0.36
|
|
7
|
+
c-0.07,0.02-0.24,0.08-0.5,0.17s-0.57,0.21-0.93,0.35c-0.84,1.41-1.52,2.32-2.03,2.74c-0.51,0.42-0.92,0.6-1.22,0.55h11.54v-3.58
|
|
8
|
+
c-0.07,0-0.14,0.01-0.21,0.02C19.51,17.39,19.44,17.4,19.35,17.4z M10.17,16.84c0.12-0.22,0.47-0.93,1.05-2.14
|
|
9
|
+
c0.58-1.21,1.01-2.24,1.28-3.08c-0.2-0.72-0.33-1.42-0.39-2.09s-0.02-1.23,0.1-1.69c0.07-0.25,0.17-0.44,0.28-0.55
|
|
10
|
+
s0.23-0.19,0.35-0.23H8.21v10.85c0.4-0.33,0.78-0.58,1.16-0.75C9.74,16.98,10.01,16.87,10.17,16.84z M13.39,7.06
|
|
11
|
+
c0.27,0,0.5,0.1,0.7,0.31c0.2,0.2,0.28,0.54,0.24,1.01c0.01,0.01,0.01,0.3,0,0.87c-0.01,0.57-0.09,1.33-0.24,2.28
|
|
12
|
+
c0.52,1.37,1.02,2.27,1.52,2.69c0.49,0.42,0.87,0.67,1.14,0.74c0.52-0.06,0.99-0.09,1.43-0.09c0.31,0,0.61,0.04,0.88,0.13
|
|
13
|
+
c0.27,0.08,0.52,0.19,0.73,0.33V9.95l-2.89-2.89H13.39z"/>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg class="icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
2
|
+
viewBox="0 0 28 28" enable-background="new 0 0 28 28" xml:space="preserve" width="28">
|
|
3
|
+
<path id="Print" fill="#D1CECC" d="M9.5,7.5h9V9h-9V7.5z M9.5,13.5h9v7h-9V13.5z M10.5,15.51h7v-1h-7V15.51z M10.5,17.49h7v-1h-7
|
|
4
|
+
V17.49z M10.5,19.49h7v-1h-7V19.49z M28,14c0,7.73-6.27,14-14,14S0,21.73,0,14S6.27,0,14,0S28,6.27,28,14z M22,11c0-1.1-0.9-2-2-2
|
|
5
|
+
h-0.5V6.5h-11V9H8c-1.1,0-2,0.9-2,2v4c0,1.1,0.9,2,2,2h0.5v4.5h11V17H20c1.1,0,2-0.9,2-2V11z M20.02,10.45c-0.28,0-0.5,0.22-0.5,0.5
|
|
6
|
+
s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5S20.29,10.45,20.02,10.45z"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg class="icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
2
|
+
viewBox="0 0 28 28" enable-background="new 0 0 28 28" xml:space="preserve" width="28">
|
|
3
|
+
<path id="Twitter" fill="#D1CECC" d="M14,0C6.27,0,0,6.27,0,14s6.27,14,14,14s14-6.27,14-14S21.73,0,14,0z M20.69,10.57
|
|
4
|
+
c0.01,0.15,0.01,0.3,0.01,0.45c0,4.56-3.47,9.82-9.82,9.82c-1.95,0-3.76-0.57-5.29-1.55c0.27,0.03,0.54,0.05,0.82,0.05
|
|
5
|
+
c1.62,0,3.11-0.55,4.29-1.48c-1.51-0.03-2.79-1.03-3.23-2.4c0.21,0.04,0.43,0.06,0.65,0.06c0.31,0,0.62-0.04,0.91-0.12
|
|
6
|
+
c-1.58-0.32-2.77-1.71-2.77-3.39c0-0.01,0-0.03,0-0.04c0.47,0.26,1,0.41,1.56,0.43c-0.93-0.62-1.54-1.68-1.54-2.87
|
|
7
|
+
c0-0.63,0.17-1.23,0.47-1.74c1.7,2.09,4.25,3.46,7.12,3.61c-0.06-0.25-0.09-0.52-0.09-0.79c0-1.91,1.55-3.45,3.45-3.45
|
|
8
|
+
c0.99,0,1.89,0.42,2.52,1.09c0.79-0.15,1.53-0.44,2.19-0.84c-0.26,0.81-0.81,1.48-1.52,1.91c0.7-0.08,1.36-0.27,1.98-0.54
|
|
9
|
+
C21.95,9.47,21.37,10.08,20.69,10.57z"/>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<svg class="icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
2
|
+
viewBox="0 0 28 28" enable-background="new 0 0 28 28" xml:space="preserve" width="28">
|
|
3
|
+
<path id="Website" fill="#D1CECC" d="M14.83,7.6c0.03,0.08,0.03,0.14,0,0.19s-0.08,0.07-0.17,0.07c-0.12,0-0.26-0.01-0.4-0.04
|
|
4
|
+
s-0.2-0.06-0.18-0.1c0.15-0.15,0.16-0.26,0.03-0.33c-0.13-0.07-0.27-0.11-0.42-0.11s-0.25-0.04-0.3-0.09s-0.03-0.09,0.05-0.09
|
|
5
|
+
s0.22,0,0.4,0.01c0.19,0.01,0.31,0.04,0.37,0.08s0.17,0.1,0.33,0.19S14.8,7.52,14.83,7.6z M15.9,13.35c-0.11-0.03-0.2-0.03-0.26,0
|
|
6
|
+
s-0.13,0.05-0.2,0.05c-0.08-0.01-0.25-0.09-0.5-0.24s-0.5-0.22-0.77-0.22c-0.11,0.01-0.17,0.04-0.19,0.08s-0.01,0.07,0.01,0.08
|
|
7
|
+
c0.02,0.01,0.12,0.03,0.29,0.05s0.4,0.11,0.67,0.26c0.28,0.15,0.48,0.21,0.61,0.19s0.22-0.06,0.28-0.1
|
|
8
|
+
c0.07-0.01,0.12-0.03,0.16-0.06S16.01,13.38,15.9,13.35z M13.62,6.85c0.17-0.03,0.3-0.13,0.38-0.3c0.03-0.14-0.04-0.2-0.21-0.18
|
|
9
|
+
s-0.29,0.07-0.37,0.13c-0.01,0.03-0.02,0.06-0.03,0.09s-0.02,0.06-0.03,0.07l-0.08,0.1c-0.03,0.03-0.03,0.05-0.02,0.06
|
|
10
|
+
C13.32,6.88,13.44,6.89,13.62,6.85z M16.12,7.08c-0.02-0.16-0.11-0.3-0.26-0.41s-0.32-0.19-0.5-0.22c-0.18-0.03-0.38-0.07-0.61-0.12
|
|
11
|
+
s-0.4-0.04-0.53,0.04c-0.21,0.18-0.25,0.31-0.12,0.39c0.07,0.03,0.2,0.05,0.38,0.06s0.44,0.15,0.76,0.41
|
|
12
|
+
c0.11,0.08,0.29,0.21,0.55,0.37s0.44,0.23,0.55,0.19c0.06-0.06,0.04-0.15-0.05-0.28S16.14,7.24,16.12,7.08z M28,14
|
|
13
|
+
c0,7.73-6.27,14-14,14S0,21.73,0,14S6.27,0,14,0S28,6.27,28,14z M21.95,14c-0.06-2.25-0.83-4.12-2.33-5.62
|
|
14
|
+
c-1.5-1.5-3.37-2.27-5.62-2.33c-2.25,0.06-4.12,0.83-5.62,2.33c-1.5,1.5-2.27,3.37-2.33,5.62c0.06,2.25,0.83,4.12,2.33,5.62
|
|
15
|
+
c1.5,1.5,3.37,2.27,5.62,2.33c0.54,0,1.06-0.05,1.57-0.14c-0.11-0.07-0.17-0.24-0.18-0.51s0.04-0.52,0.16-0.76
|
|
16
|
+
c0.15-0.26,0.3-0.61,0.46-1.04c0.15-0.43,0.08-0.77-0.23-1c-0.32-0.18-0.51-0.34-0.57-0.49s-0.19-0.32-0.37-0.54
|
|
17
|
+
s-0.28-0.36-0.28-0.44v-0.21c-0.01-0.21,0.05-0.43,0.19-0.66l0.25-0.39c0.01-0.04,0.02-0.1,0.02-0.19v-0.19
|
|
18
|
+
c-0.01-0.04-0.07-0.09-0.17-0.16s-0.17-0.1-0.22-0.1s-0.09,0.01-0.11,0.05s-0.07,0.06-0.13,0.06s-0.17-0.04-0.33-0.13
|
|
19
|
+
c-0.16-0.09-0.27-0.16-0.32-0.21s-0.1-0.11-0.14-0.19s-0.09-0.15-0.16-0.22s-0.11-0.1-0.16-0.09s-0.12,0-0.23-0.03l-1.45-0.56
|
|
20
|
+
c-0.26-0.11-0.43-0.23-0.5-0.37c-0.07-0.14-0.1-0.26-0.1-0.37s-0.06-0.23-0.17-0.37l-0.29-0.37c-0.08-0.12-0.14-0.24-0.17-0.34
|
|
21
|
+
s-0.05-0.15-0.06-0.13c-0.01,0.07,0.02,0.23,0.1,0.48s0.12,0.39,0.1,0.43c-0.03,0.01-0.07-0.02-0.12-0.11s-0.12-0.19-0.19-0.3
|
|
22
|
+
c-0.06-0.07-0.07-0.15-0.04-0.25c0.03-0.1-0.07-0.38-0.29-0.85c-0.22-0.47-0.26-0.85-0.11-1.15s0.24-0.57,0.3-0.82
|
|
23
|
+
c0.03-0.21,0.09-0.25,0.19-0.13c0.1,0.12,0.1,0.11,0.02-0.01c-0.08-0.18-0.11-0.4-0.08-0.65c0.03-0.26,0.01-0.46-0.06-0.61
|
|
24
|
+
c-0.11-0.1-0.3-0.08-0.58,0.05S9.12,8.14,9.1,8.16c0.03-0.12,0.18-0.28,0.46-0.46l0.87-0.58c0.26-0.17,0.49-0.22,0.69-0.17
|
|
25
|
+
s0.41,0.12,0.62,0.21s0.34,0.12,0.37,0.1s0.01-0.06-0.06-0.13s-0.07-0.13,0.01-0.16S12.26,6.96,12.43,7
|
|
26
|
+
c0.17,0.03,0.31,0.11,0.42,0.24s0.3,0.18,0.54,0.17s0.32,0.01,0.25,0.06s-0.11,0.12-0.11,0.19c0.04,0.06,0.02,0.1-0.05,0.13
|
|
27
|
+
s-0.2,0.1-0.36,0.21s-0.18,0.19-0.05,0.26c0.13,0.07,0.36,0.21,0.67,0.41c0.28,0.19,0.41,0.19,0.41-0.01s-0.02-0.4-0.06-0.61
|
|
28
|
+
c-0.01-0.14,0.05-0.19,0.2-0.14s0.22,0.07,0.24,0.08c0.17,0.11,0.27,0.15,0.32,0.11s0.13-0.04,0.26-0.01
|
|
29
|
+
c0.17,0.07,0.37,0.19,0.6,0.37l0.41,0.33c-0.43,0.25-0.6,0.41-0.51,0.49s0.2,0.14,0.32,0.2c0.06,0.06,0.02,0.12-0.1,0.21
|
|
30
|
+
s-0.2,0.12-0.23,0.12c-0.08-0.08-0.15-0.1-0.2-0.05s-0.1,0.09-0.16,0.13c-0.06,0.04-0.07,0.09-0.05,0.14s0.04,0.09,0.05,0.1
|
|
31
|
+
c-0.3,0.07-0.47,0.22-0.49,0.44s-0.02,0.39-0.01,0.49c0,0.08-0.07,0.18-0.21,0.3s-0.24,0.23-0.31,0.34c-0.03,0.14,0,0.29,0.08,0.47
|
|
32
|
+
c0.08,0.17,0.08,0.27,0,0.3c-0.08-0.01-0.22-0.12-0.41-0.32c-0.19-0.2-0.55-0.24-1.08-0.13c-0.19,0.04-0.39,0.16-0.6,0.36
|
|
33
|
+
s-0.23,0.49-0.06,0.88c0.21,0.32,0.43,0.38,0.68,0.19c0.25-0.19,0.43-0.3,0.56-0.31c0.1,0.08,0.12,0.2,0.06,0.35
|
|
34
|
+
c-0.06,0.15-0.08,0.24-0.08,0.27c0.06-0.01,0.17,0.02,0.34,0.09s0.28,0.27,0.32,0.58c0.04,0.31,0.19,0.49,0.46,0.55
|
|
35
|
+
s0.45,0.08,0.57,0.07s0.28-0.09,0.48-0.24s0.32-0.24,0.37-0.27s0.17-0.06,0.35-0.1s0.47,0.03,0.84,0.23s0.67,0.31,0.88,0.35
|
|
36
|
+
s0.38,0.11,0.5,0.2s0.18,0.2,0.18,0.33s0.05,0.23,0.14,0.3c0.15,0.04,0.39,0.07,0.72,0.07s0.57,0.1,0.72,0.28
|
|
37
|
+
c0.07,0.28-0.08,0.73-0.46,1.38c-0.37,0.64-0.68,1.05-0.93,1.23c-0.18,0.12-0.34,0.29-0.48,0.49s-0.3,0.38-0.49,0.55
|
|
38
|
+
s-0.41,0.34-0.66,0.52s-0.51,0.34-0.78,0.5c-0.21,0.15-0.36,0.32-0.46,0.51s-0.19,0.32-0.27,0.4c1.81-0.43,3.28-1.34,4.43-2.75
|
|
39
|
+
C21.31,17.6,21.9,15.93,21.95,14z"/>
|
|
40
|
+
</svg>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<!-- and guess where these are defined? Yup, you guessed it: the _config.yml file -->
|
|
2
|
+
{% if site.resume_print_social_links %}
|
|
3
|
+
<ul>
|
|
4
|
+
|
|
5
|
+
<!-- GitHub link -->
|
|
6
|
+
{% if site.resume_social_links.resume_github_url %}
|
|
7
|
+
<li><strong>Github</strong>: {{ site.resume_social_links.resume_github_url }}</li>
|
|
8
|
+
{% endif %}
|
|
9
|
+
|
|
10
|
+
<!-- Twitter link -->
|
|
11
|
+
{% if site.resume_social_links.resume_twitter_url %}
|
|
12
|
+
<li><strong>Twitter</strong>: {{ site.resume_social_links.resume_twitter_url }}</li>
|
|
13
|
+
{% endif %}
|
|
14
|
+
|
|
15
|
+
<!-- Dribbble link -->
|
|
16
|
+
{% if site.resume_social_links.resume_dribbble_url %}
|
|
17
|
+
<li><strong>Dribbble</strong>: {{ site.resume_social_links.resume_dribbble_url }}</li>
|
|
18
|
+
{% endif %}
|
|
19
|
+
|
|
20
|
+
<!-- Facebook link -->
|
|
21
|
+
{% if site.resume_social_links.resume_facebook_url %}
|
|
22
|
+
<li><strong>Facebook</strong>: {{ site.resume_social_links.resume_facebook_url }}</li>
|
|
23
|
+
{% endif %}
|
|
24
|
+
|
|
25
|
+
<!-- LinkedIn link -->
|
|
26
|
+
{% if site.resume_social_links.resume_linkedin_url %}
|
|
27
|
+
<li><strong>LinkedIn</strong>: {{ site.resume_social_links.resume_linkedin_url }}</li>
|
|
28
|
+
{% endif %}
|
|
29
|
+
|
|
30
|
+
<!-- Instagram link -->
|
|
31
|
+
{% if site.resume_social_links.resume_instagram_url %}
|
|
32
|
+
<li><strong>Instagram</strong>: {{ site.resume_social_links.resume_instagram_url }}</li>
|
|
33
|
+
{% endif %}
|
|
34
|
+
|
|
35
|
+
<!-- Website link -->
|
|
36
|
+
{% if site.resume_social_links.resume_website_url %}
|
|
37
|
+
<li><strong>Website</strong>: {{ site.resume_social_links.resume_website_url }}</li>
|
|
38
|
+
{% endif %}
|
|
39
|
+
|
|
40
|
+
</ul>
|
|
41
|
+
{% endif %}
|
data/_sass/_base.scss
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
// Base styles
|
|
2
|
+
// ---------------------------------------/
|
|
3
|
+
* {
|
|
4
|
+
-webkit-box-sizing: border-box;
|
|
5
|
+
-moz-box-sizing: border-box;
|
|
6
|
+
box-sizing: border-box;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
html {
|
|
10
|
+
background: $white;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
body{
|
|
14
|
+
@include serif;
|
|
15
|
+
color: $text_color;
|
|
16
|
+
font-size: 16px;
|
|
17
|
+
line-height: 1.5;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.wrapper:before,
|
|
21
|
+
.wrapper:after { content:""; display:table; }
|
|
22
|
+
.wrapper:after { clear: both; }
|
|
23
|
+
.wrapper {
|
|
24
|
+
max-width: 728px;
|
|
25
|
+
padding: 0 24px;
|
|
26
|
+
margin: 0 auto;
|
|
27
|
+
zoom: 1;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
// clearfix (now called group,
|
|
31
|
+
// via http://css-tricks.com/snippets/css/clear-fix/)
|
|
32
|
+
.group:before,
|
|
33
|
+
.group:after { content:""; display:table; }
|
|
34
|
+
.group:after { clear:both; }
|
|
35
|
+
.group { zoom:1; /* For IE 6/7 (trigger hasLayout) */ }
|
|
36
|
+
|
|
37
|
+
::-moz-selection {
|
|
38
|
+
background: rgba(51,51,51,.8);
|
|
39
|
+
color: #fff;
|
|
40
|
+
text-shadow: none;
|
|
41
|
+
}
|
|
42
|
+
::selection {
|
|
43
|
+
background: rgba(51,51,51,.8);
|
|
44
|
+
color: #fff;
|
|
45
|
+
text-shadow: none;
|
|
46
|
+
}
|
data/_sass/_layout.scss
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
// Layout styles
|
|
2
|
+
// ---------------------------------------/
|
|
3
|
+
|
|
4
|
+
// Layout from Primer (https://github.com/primer/primer/blob/master/scss/_layout.scss)
|
|
5
|
+
|
|
6
|
+
// Fixed-width, centered column for site content.
|
|
7
|
+
.container {
|
|
8
|
+
width: $container-width;
|
|
9
|
+
margin-right: auto;
|
|
10
|
+
margin-left: auto;
|
|
11
|
+
@include clearfix;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
// Grid system
|
|
15
|
+
//
|
|
16
|
+
// Create rows with `.columns` to clear the floated columns and outdent the
|
|
17
|
+
// padding on `.column`s with negative margin for alignment.
|
|
18
|
+
|
|
19
|
+
.columns {
|
|
20
|
+
margin-right: -$grid-gutter;
|
|
21
|
+
margin-left: -$grid-gutter;
|
|
22
|
+
@include clearfix;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
// Base class for every column (requires a column width from below)
|
|
26
|
+
.column {
|
|
27
|
+
float: left;
|
|
28
|
+
padding-right: $grid-gutter;
|
|
29
|
+
padding-left: $grid-gutter;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
// Column widths
|
|
33
|
+
.one-third {
|
|
34
|
+
width: 33.333333%;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.two-thirds {
|
|
38
|
+
width: 66.666667%;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.one-fourth {
|
|
42
|
+
width: 25%;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.one-half {
|
|
46
|
+
width: 50%;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.three-fourths {
|
|
50
|
+
width: 75%;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.one-fifth {
|
|
54
|
+
width: 20%;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.four-fifths {
|
|
58
|
+
width: 80%;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
// Single column hack
|
|
62
|
+
.single-column {
|
|
63
|
+
padding-right: $grid-gutter;
|
|
64
|
+
padding-left: $grid-gutter;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
// Equal width columns via table sorcery.
|
|
68
|
+
.table-column {
|
|
69
|
+
display: table-cell;
|
|
70
|
+
width: 1%;
|
|
71
|
+
padding-right: $grid-gutter;
|
|
72
|
+
padding-left: $grid-gutter;
|
|
73
|
+
vertical-align: top;
|
|
74
|
+
}
|
data/_sass/_mixins.scss
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
// Mixins
|
|
2
|
+
// ---------------------------------------/
|
|
3
|
+
|
|
4
|
+
@mixin border-radius($radius) {
|
|
5
|
+
-webkit-border-radius: $radius;
|
|
6
|
+
-moz-border-radius: $radius;
|
|
7
|
+
border-radius: $radius;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@mixin transition($value) {
|
|
11
|
+
-webkit-transition: $value;
|
|
12
|
+
-moz-transition: $value;
|
|
13
|
+
transition: $value;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
// Clearfix
|
|
17
|
+
//
|
|
18
|
+
// Clears floats via mixin (avoid using as a class).
|
|
19
|
+
|
|
20
|
+
@mixin clearfix {
|
|
21
|
+
&:before {
|
|
22
|
+
display: table;
|
|
23
|
+
content: "";
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&:after {
|
|
27
|
+
display: table;
|
|
28
|
+
clear: both;
|
|
29
|
+
content: "";
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
// media querie tools
|
|
34
|
+
|
|
35
|
+
@mixin media_max($screen_width) {
|
|
36
|
+
@media (max-width: $screen_width) { @content; }
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
@mixin media_min($screen_width) {
|
|
40
|
+
@media (min-width: $screen_width) { @content; }
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@mixin media_larger_than_mobile {
|
|
44
|
+
@media (min-width: 600px) { @content; }
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
@mixin media_mobile {
|
|
48
|
+
@media (max-width: 600px) { @content; }
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
// type utilities
|
|
52
|
+
|
|
53
|
+
@mixin sans {
|
|
54
|
+
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
@mixin sans_light {
|
|
58
|
+
@include sans;
|
|
59
|
+
font-weight: 300;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
@mixin sans_regular {
|
|
63
|
+
@include sans;
|
|
64
|
+
font-weight: 400;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
@mixin sans_bold {
|
|
68
|
+
@include sans;
|
|
69
|
+
font-weight: 700;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
@mixin sans_extrabold {
|
|
73
|
+
@include sans;
|
|
74
|
+
font-weight: 800;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
@mixin serif {
|
|
78
|
+
font-family: "Lora", "Minion Pro", Palatino, Georgia, serif;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
@mixin serif_regular {
|
|
82
|
+
@include serif;
|
|
83
|
+
font-weight: 400;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
@mixin serif_bold {
|
|
87
|
+
@include serif;
|
|
88
|
+
font-weight: 700;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
// layout
|
|
92
|
+
|
|
93
|
+
@mixin section_border {
|
|
94
|
+
border-top: 4px solid #c7c7c7;
|
|
95
|
+
border-bottom: 2px solid #c7c7c7;
|
|
96
|
+
padding: .2rem 0 .4rem;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
@mixin section_border_thin {
|
|
100
|
+
border-top: 1px solid #c7c7c7;
|
|
101
|
+
border-bottom: 1px solid #c7c7c7;
|
|
102
|
+
padding: .2rem 0 .2rem;
|
|
103
|
+
}
|
|
@@ -0,0 +1,426 @@
|
|
|
1
|
+
// Normalize styles
|
|
2
|
+
// ---------------------------------------/
|
|
3
|
+
|
|
4
|
+
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* 1. Set default font family to sans-serif.
|
|
8
|
+
* 2. Prevent iOS and IE text size adjust after device orientation change,
|
|
9
|
+
* without disabling user zoom.
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
html {
|
|
13
|
+
font-family: sans-serif; /* 1 */
|
|
14
|
+
text-size-adjust: 100%; /* 2 */
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Remove default margin.
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
body {
|
|
22
|
+
margin: 0;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/* HTML5 display definitions
|
|
26
|
+
========================================================================== */
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Correct `block` display not defined for any HTML5 element in IE 8/9.
|
|
30
|
+
* Correct `block` display not defined for `details` or `summary` in IE 10/11
|
|
31
|
+
* and Firefox.
|
|
32
|
+
* Correct `block` display not defined for `main` in IE 11.
|
|
33
|
+
*/
|
|
34
|
+
|
|
35
|
+
article,
|
|
36
|
+
aside,
|
|
37
|
+
details,
|
|
38
|
+
figcaption,
|
|
39
|
+
figure,
|
|
40
|
+
footer,
|
|
41
|
+
header,
|
|
42
|
+
hgroup,
|
|
43
|
+
main,
|
|
44
|
+
menu,
|
|
45
|
+
nav,
|
|
46
|
+
section,
|
|
47
|
+
summary {
|
|
48
|
+
display: block;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* 1. Correct `inline-block` display not defined in IE 8/9.
|
|
53
|
+
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
|
|
54
|
+
*/
|
|
55
|
+
|
|
56
|
+
audio,
|
|
57
|
+
canvas,
|
|
58
|
+
progress,
|
|
59
|
+
video {
|
|
60
|
+
display: inline-block; /* 1 */
|
|
61
|
+
vertical-align: baseline; /* 2 */
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* Prevent modern browsers from displaying `audio` without controls.
|
|
66
|
+
* Remove excess height in iOS 5 devices.
|
|
67
|
+
*/
|
|
68
|
+
|
|
69
|
+
audio:not([controls]) {
|
|
70
|
+
display: none;
|
|
71
|
+
height: 0;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Address `[hidden]` styling not present in IE 8/9/10.
|
|
76
|
+
* Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
|
|
77
|
+
*/
|
|
78
|
+
|
|
79
|
+
[hidden],
|
|
80
|
+
template {
|
|
81
|
+
display: none;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/* Links
|
|
85
|
+
========================================================================== */
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* Remove the gray background color from active links in IE 10.
|
|
89
|
+
*/
|
|
90
|
+
|
|
91
|
+
a {
|
|
92
|
+
background-color: transparent;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Improve readability of focused elements when they are also in an
|
|
97
|
+
* active/hover state.
|
|
98
|
+
*/
|
|
99
|
+
|
|
100
|
+
a:active,
|
|
101
|
+
a:hover {
|
|
102
|
+
outline: 0;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
/* Text-level semantics
|
|
106
|
+
========================================================================== */
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
|
|
110
|
+
*/
|
|
111
|
+
|
|
112
|
+
abbr[title] {
|
|
113
|
+
border-bottom: 1px dotted;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
|
|
118
|
+
*/
|
|
119
|
+
|
|
120
|
+
b,
|
|
121
|
+
strong {
|
|
122
|
+
font-weight: bold;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* Address styling not present in Safari and Chrome.
|
|
127
|
+
*/
|
|
128
|
+
|
|
129
|
+
dfn {
|
|
130
|
+
font-style: italic;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* Address variable `h1` font-size and margin within `section` and `article`
|
|
135
|
+
* contexts in Firefox 4+, Safari, and Chrome.
|
|
136
|
+
*/
|
|
137
|
+
|
|
138
|
+
h1 {
|
|
139
|
+
font-size: 2em;
|
|
140
|
+
margin: 0.67em 0;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* Address styling not present in IE 8/9.
|
|
145
|
+
*/
|
|
146
|
+
|
|
147
|
+
mark {
|
|
148
|
+
background: #ff0;
|
|
149
|
+
color: #000;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
/**
|
|
153
|
+
* Address inconsistent and variable font size in all browsers.
|
|
154
|
+
*/
|
|
155
|
+
|
|
156
|
+
small {
|
|
157
|
+
font-size: 80%;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
|
162
|
+
*/
|
|
163
|
+
|
|
164
|
+
sub,
|
|
165
|
+
sup {
|
|
166
|
+
font-size: 75%;
|
|
167
|
+
line-height: 0;
|
|
168
|
+
position: relative;
|
|
169
|
+
vertical-align: baseline;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
sup {
|
|
173
|
+
top: -0.5em;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
sub {
|
|
177
|
+
bottom: -0.25em;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
/* Embedded content
|
|
181
|
+
========================================================================== */
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* Remove border when inside `a` element in IE 8/9/10.
|
|
185
|
+
*/
|
|
186
|
+
|
|
187
|
+
img {
|
|
188
|
+
border: 0;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
/**
|
|
192
|
+
* Correct overflow not hidden in IE 9/10/11.
|
|
193
|
+
*/
|
|
194
|
+
|
|
195
|
+
svg:not(:root) {
|
|
196
|
+
overflow: hidden;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
/* Grouping content
|
|
200
|
+
========================================================================== */
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* Address margin not present in IE 8/9 and Safari.
|
|
204
|
+
*/
|
|
205
|
+
|
|
206
|
+
figure {
|
|
207
|
+
margin: 1em 40px;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
/**
|
|
211
|
+
* Address differences between Firefox and other browsers.
|
|
212
|
+
*/
|
|
213
|
+
|
|
214
|
+
hr {
|
|
215
|
+
box-sizing: content-box;
|
|
216
|
+
height: 0;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* Contain overflow in all browsers.
|
|
221
|
+
*/
|
|
222
|
+
|
|
223
|
+
pre {
|
|
224
|
+
overflow: auto;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
/**
|
|
228
|
+
* Address odd `em`-unit font size rendering in all browsers.
|
|
229
|
+
*/
|
|
230
|
+
|
|
231
|
+
code,
|
|
232
|
+
kbd,
|
|
233
|
+
pre,
|
|
234
|
+
samp {
|
|
235
|
+
font-family: monospace, monospace;
|
|
236
|
+
font-size: 1em;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
/* Forms
|
|
240
|
+
========================================================================== */
|
|
241
|
+
|
|
242
|
+
/**
|
|
243
|
+
* Known limitation: by default, Chrome and Safari on OS X allow very limited
|
|
244
|
+
* styling of `select`, unless a `border` property is set.
|
|
245
|
+
*/
|
|
246
|
+
|
|
247
|
+
/**
|
|
248
|
+
* 1. Correct color not being inherited.
|
|
249
|
+
* Known issue: affects color of disabled elements.
|
|
250
|
+
* 2. Correct font properties not being inherited.
|
|
251
|
+
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
|
|
252
|
+
*/
|
|
253
|
+
|
|
254
|
+
button,
|
|
255
|
+
input,
|
|
256
|
+
optgroup,
|
|
257
|
+
select,
|
|
258
|
+
textarea {
|
|
259
|
+
color: inherit; /* 1 */
|
|
260
|
+
font: inherit; /* 2 */
|
|
261
|
+
margin: 0; /* 3 */
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
/**
|
|
265
|
+
* Address `overflow` set to `hidden` in IE 8/9/10/11.
|
|
266
|
+
*/
|
|
267
|
+
|
|
268
|
+
button {
|
|
269
|
+
overflow: visible;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
/**
|
|
273
|
+
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
|
274
|
+
* All other form control elements do not inherit `text-transform` values.
|
|
275
|
+
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
|
|
276
|
+
* Correct `select` style inheritance in Firefox.
|
|
277
|
+
*/
|
|
278
|
+
|
|
279
|
+
button,
|
|
280
|
+
select {
|
|
281
|
+
text-transform: none;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
/**
|
|
285
|
+
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
|
286
|
+
* and `video` controls.
|
|
287
|
+
* 2. Correct inability to style clickable `input` types in iOS.
|
|
288
|
+
* 3. Improve usability and consistency of cursor style between image-type
|
|
289
|
+
* `input` and others.
|
|
290
|
+
*/
|
|
291
|
+
|
|
292
|
+
button,
|
|
293
|
+
html input[type="button"], /* 1 */
|
|
294
|
+
input[type="reset"],
|
|
295
|
+
input[type="submit"] {
|
|
296
|
+
-webkit-appearance: button; /* 2 */
|
|
297
|
+
cursor: pointer; /* 3 */
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
/**
|
|
301
|
+
* Re-set default cursor for disabled elements.
|
|
302
|
+
*/
|
|
303
|
+
|
|
304
|
+
button[disabled],
|
|
305
|
+
html input[disabled] {
|
|
306
|
+
cursor: default;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
/**
|
|
310
|
+
* Remove inner padding and border in Firefox 4+.
|
|
311
|
+
*/
|
|
312
|
+
|
|
313
|
+
button::-moz-focus-inner,
|
|
314
|
+
input::-moz-focus-inner {
|
|
315
|
+
border: 0;
|
|
316
|
+
padding: 0;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
/**
|
|
320
|
+
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
|
|
321
|
+
* the UA stylesheet.
|
|
322
|
+
*/
|
|
323
|
+
|
|
324
|
+
input {
|
|
325
|
+
line-height: normal;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
/**
|
|
329
|
+
* It's recommended that you don't attempt to style these elements.
|
|
330
|
+
* Firefox's implementation doesn't respect box-sizing, padding, or width.
|
|
331
|
+
*
|
|
332
|
+
* 1. Address box sizing set to `content-box` in IE 8/9/10.
|
|
333
|
+
* 2. Remove excess padding in IE 8/9/10.
|
|
334
|
+
*/
|
|
335
|
+
|
|
336
|
+
input[type="checkbox"],
|
|
337
|
+
input[type="radio"] {
|
|
338
|
+
box-sizing: border-box; /* 1 */
|
|
339
|
+
padding: 0; /* 2 */
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
/**
|
|
343
|
+
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
|
|
344
|
+
* `font-size` values of the `input`, it causes the cursor style of the
|
|
345
|
+
* decrement button to change from `default` to `text`.
|
|
346
|
+
*/
|
|
347
|
+
|
|
348
|
+
input[type="number"]::-webkit-inner-spin-button,
|
|
349
|
+
input[type="number"]::-webkit-outer-spin-button {
|
|
350
|
+
height: auto;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
/**
|
|
354
|
+
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
|
|
355
|
+
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
|
|
356
|
+
*/
|
|
357
|
+
|
|
358
|
+
input[type="search"] {
|
|
359
|
+
-webkit-appearance: textfield; /* 1 */
|
|
360
|
+
box-sizing: content-box; /* 2 */
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
/**
|
|
364
|
+
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
|
|
365
|
+
* Safari (but not Chrome) clips the cancel button when the search input has
|
|
366
|
+
* padding (and `textfield` appearance).
|
|
367
|
+
*/
|
|
368
|
+
|
|
369
|
+
input[type="search"]::-webkit-search-cancel-button,
|
|
370
|
+
input[type="search"]::-webkit-search-decoration {
|
|
371
|
+
-webkit-appearance: none;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
/**
|
|
375
|
+
* Define consistent border, margin, and padding.
|
|
376
|
+
*/
|
|
377
|
+
|
|
378
|
+
fieldset {
|
|
379
|
+
border: 1px solid #c0c0c0;
|
|
380
|
+
margin: 0 2px;
|
|
381
|
+
padding: 0.35em 0.625em 0.75em;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
/**
|
|
385
|
+
* 1. Correct `color` not being inherited in IE 8/9/10/11.
|
|
386
|
+
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
|
387
|
+
*/
|
|
388
|
+
|
|
389
|
+
legend {
|
|
390
|
+
border: 0; /* 1 */
|
|
391
|
+
padding: 0; /* 2 */
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
/**
|
|
395
|
+
* Remove default vertical scrollbar in IE 8/9/10/11.
|
|
396
|
+
*/
|
|
397
|
+
|
|
398
|
+
textarea {
|
|
399
|
+
overflow: auto;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
/**
|
|
403
|
+
* Don't inherit the `font-weight` (applied by a rule above).
|
|
404
|
+
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
|
|
405
|
+
*/
|
|
406
|
+
|
|
407
|
+
optgroup {
|
|
408
|
+
font-weight: bold;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
/* Tables
|
|
412
|
+
========================================================================== */
|
|
413
|
+
|
|
414
|
+
/**
|
|
415
|
+
* Remove most spacing between table cells.
|
|
416
|
+
*/
|
|
417
|
+
|
|
418
|
+
table {
|
|
419
|
+
border-collapse: collapse;
|
|
420
|
+
border-spacing: 0;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
td,
|
|
424
|
+
th {
|
|
425
|
+
padding: 0;
|
|
426
|
+
}
|
data/_sass/_resume.scss
ADDED
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
// Resume styles
|
|
2
|
+
// ---------------------------------------/
|
|
3
|
+
|
|
4
|
+
// util
|
|
5
|
+
|
|
6
|
+
.section-header {
|
|
7
|
+
@include section_border;
|
|
8
|
+
margin-bottom: 1.5rem;
|
|
9
|
+
|
|
10
|
+
h2 {
|
|
11
|
+
@include sans;
|
|
12
|
+
font-weight: 900;
|
|
13
|
+
font-size: 1.75rem;
|
|
14
|
+
letter-spacing: -.05rem;
|
|
15
|
+
margin: 0;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// page header styles
|
|
20
|
+
|
|
21
|
+
.page-header { padding: 1.5rem 0;
|
|
22
|
+
|
|
23
|
+
.avatar {
|
|
24
|
+
width: 95px;
|
|
25
|
+
max-width: 100%;
|
|
26
|
+
overflow: hidden;
|
|
27
|
+
@include border-radius(100px);
|
|
28
|
+
margin: 0 auto;
|
|
29
|
+
display: block;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.header-name {
|
|
33
|
+
@include sans;
|
|
34
|
+
font-size: 3rem;
|
|
35
|
+
font-weight: 900;
|
|
36
|
+
text-align: center;
|
|
37
|
+
letter-spacing: -.15rem;
|
|
38
|
+
line-height: 1;
|
|
39
|
+
margin: 1rem 0 0;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.header-contact-info {
|
|
43
|
+
@include sans;
|
|
44
|
+
text-align: center;
|
|
45
|
+
}
|
|
46
|
+
.header-contact-info p a {
|
|
47
|
+
color: inherit;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.title-bar {
|
|
51
|
+
@include section_border;
|
|
52
|
+
margin-top: 2rem;
|
|
53
|
+
padding: .4rem 0;
|
|
54
|
+
@include clearfix;
|
|
55
|
+
|
|
56
|
+
.header-title {
|
|
57
|
+
@include sans;
|
|
58
|
+
font-weight: 300;
|
|
59
|
+
font-size: 1.75rem;
|
|
60
|
+
line-height: 2rem;
|
|
61
|
+
letter-spacing: -.05rem;
|
|
62
|
+
text-align: center;
|
|
63
|
+
margin: 0 0 .5rem;
|
|
64
|
+
|
|
65
|
+
@include media_larger_than_mobile {
|
|
66
|
+
float: left;
|
|
67
|
+
margin: 0;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.executive-summary {
|
|
73
|
+
@include media_larger_than_mobile { font-size: 1.125rem; }
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.icon-links {
|
|
78
|
+
margin: 0;
|
|
79
|
+
padding: 0;
|
|
80
|
+
list-style: none;
|
|
81
|
+
position: relative;
|
|
82
|
+
top: 4px;
|
|
83
|
+
text-align: center;
|
|
84
|
+
border-top: 2px solid #c7c7c7;
|
|
85
|
+
padding-top: .4rem;
|
|
86
|
+
|
|
87
|
+
@include media_larger_than_mobile {
|
|
88
|
+
float: right;
|
|
89
|
+
border-top: none;
|
|
90
|
+
padding-top: 0;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.icon-link-item {
|
|
94
|
+
display: inline-block;
|
|
95
|
+
margin-left: 5px;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.icon-link { display: inline-block;
|
|
99
|
+
|
|
100
|
+
&:hover .icon path {
|
|
101
|
+
fill: #333;
|
|
102
|
+
@include transition(all .2s ease);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.icon {
|
|
107
|
+
height: 28px;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.contact-button {
|
|
112
|
+
@include border-radius(3px);
|
|
113
|
+
background-color: #efefef;
|
|
114
|
+
text-decoration: none;
|
|
115
|
+
text-align: center;
|
|
116
|
+
display: block;
|
|
117
|
+
margin: 1.5rem auto;
|
|
118
|
+
width: 220px;
|
|
119
|
+
font-size: 1.375rem;
|
|
120
|
+
@include sans_light;
|
|
121
|
+
color: #333;
|
|
122
|
+
line-height: 55px;
|
|
123
|
+
@include transition(all .2s ease);
|
|
124
|
+
|
|
125
|
+
&:hover {
|
|
126
|
+
background-color: #333;
|
|
127
|
+
color: #fff;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
&.not-looking { width: 400px; }
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
// resume content styles
|
|
134
|
+
|
|
135
|
+
.content-section {
|
|
136
|
+
margin: 0 0 3rem;
|
|
137
|
+
|
|
138
|
+
.resume-item { margin-bottom: 2rem; }
|
|
139
|
+
|
|
140
|
+
.resume-item-title {
|
|
141
|
+
@include sans_bold;
|
|
142
|
+
margin: 0 0 .75rem;
|
|
143
|
+
font-size: 1.5rem;
|
|
144
|
+
letter-spacing: -.05rem;
|
|
145
|
+
line-height: 1;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.resume-item-details {
|
|
149
|
+
font-size: 1.125rem;
|
|
150
|
+
margin: 0 0 .75rem;
|
|
151
|
+
line-height: 1;
|
|
152
|
+
|
|
153
|
+
&.award-title {
|
|
154
|
+
font-size: 1rem;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.resume-item-title,
|
|
159
|
+
.resume-item-details,
|
|
160
|
+
.resume-item-copy,
|
|
161
|
+
.resume-item-list {
|
|
162
|
+
a {
|
|
163
|
+
color: #333;
|
|
164
|
+
text-decoration: none;
|
|
165
|
+
border-bottom: 1px solid;
|
|
166
|
+
|
|
167
|
+
&:hover {
|
|
168
|
+
border-bottom: none;
|
|
169
|
+
color: #9c9c9c;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.resume-item-copy { margin: .75rem 0 0; }
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
// footer styles
|
|
178
|
+
|
|
179
|
+
.page-footer {
|
|
180
|
+
border-top: 4px solid #c7c7c7;
|
|
181
|
+
padding-top: 1.5rem;
|
|
182
|
+
text-align: center;
|
|
183
|
+
margin-bottom: 3rem;
|
|
184
|
+
|
|
185
|
+
.footer-line {
|
|
186
|
+
margin: 0;
|
|
187
|
+
font-size: .875rem;
|
|
188
|
+
color: #999;
|
|
189
|
+
|
|
190
|
+
> a {
|
|
191
|
+
font-weight: 700;
|
|
192
|
+
color: #333;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.print-only { display: none !important }
|
|
198
|
+
|
|
199
|
+
@media print {
|
|
200
|
+
.no-print { display: none !important }
|
|
201
|
+
.print-only { display: block !important }
|
|
202
|
+
body { font-size: 12px; line-height: 1rem; }
|
|
203
|
+
.page-header { padding: 1rem 0 .2rem;
|
|
204
|
+
.header-name {
|
|
205
|
+
@include sans_bold;
|
|
206
|
+
font-size: 2rem;
|
|
207
|
+
margin: 0 0 .2rem;
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
.section-header {
|
|
211
|
+
@include section_border_thin;
|
|
212
|
+
margin-bottom: 1rem;
|
|
213
|
+
h2 { font-size: 1.2rem; line-height: 1.5rem; }
|
|
214
|
+
}
|
|
215
|
+
.content-section {
|
|
216
|
+
margin: 0 0 1rem;
|
|
217
|
+
.resume-item { margin-bottom: 1rem; }
|
|
218
|
+
.resume-item-title {
|
|
219
|
+
font-size: 16px;
|
|
220
|
+
line-height: .7em;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.resume-item-details {
|
|
224
|
+
font-size: 12px;
|
|
225
|
+
margin: 0 0 .75rem;
|
|
226
|
+
line-height: .7em;
|
|
227
|
+
font-style:italic;
|
|
228
|
+
|
|
229
|
+
&.award-title {
|
|
230
|
+
font-size: 11px;
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// Variables
|
|
2
|
+
// ---------------------------------------/
|
|
3
|
+
|
|
4
|
+
$container-width: 980px !default;
|
|
5
|
+
$grid-gutter: 10px !default;
|
|
6
|
+
|
|
7
|
+
// Colors
|
|
8
|
+
$white: #fff;
|
|
9
|
+
$black: #333;
|
|
10
|
+
|
|
11
|
+
// Styles
|
|
12
|
+
$text_color: $black;
|
|
13
|
+
|
|
14
|
+
// Font stack
|
|
15
|
+
$body-font: Helvetica, arial, nimbussansl, liberationsans, freesans, clean, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol" !default;
|
|
16
|
+
|
|
17
|
+
// The base body size
|
|
18
|
+
$body-font-size: 13px !default;
|
|
19
|
+
|
|
20
|
+
// Monospace font stack
|
|
21
|
+
$mono-font: Consolas, "Liberation Mono", Menlo, Courier, monospace !default;
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-lucas-minima
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- LucasZ-SGP
|
|
@@ -96,14 +96,32 @@ files:
|
|
|
96
96
|
- _includes/header.html
|
|
97
97
|
- _includes/icon-github.html
|
|
98
98
|
- _includes/icon-github.svg
|
|
99
|
+
- _includes/icon-links.html
|
|
99
100
|
- _includes/icon-twitter.html
|
|
100
101
|
- _includes/icon-twitter.svg
|
|
102
|
+
- _includes/icons/icon-dribbble.html
|
|
103
|
+
- _includes/icons/icon-facebook.html
|
|
104
|
+
- _includes/icons/icon-github.html
|
|
105
|
+
- _includes/icons/icon-instagram.html
|
|
106
|
+
- _includes/icons/icon-linkedin.html
|
|
107
|
+
- _includes/icons/icon-medium.html
|
|
108
|
+
- _includes/icons/icon-pdf.html
|
|
109
|
+
- _includes/icons/icon-print.html
|
|
110
|
+
- _includes/icons/icon-twitter.html
|
|
111
|
+
- _includes/icons/icon-website.html
|
|
112
|
+
- _includes/print-social-links.html
|
|
101
113
|
- _includes/social.html
|
|
102
114
|
- _layouts/default.html
|
|
103
115
|
- _layouts/home.html
|
|
104
116
|
- _layouts/page.html
|
|
105
117
|
- _layouts/post.html
|
|
106
118
|
- _layouts/resume.html
|
|
119
|
+
- _sass/_base.scss
|
|
120
|
+
- _sass/_layout.scss
|
|
121
|
+
- _sass/_mixins.scss
|
|
122
|
+
- _sass/_normalize.scss
|
|
123
|
+
- _sass/_resume.scss
|
|
124
|
+
- _sass/_variables.scss
|
|
107
125
|
- _sass/minima.scss
|
|
108
126
|
- _sass/minima/_base.scss
|
|
109
127
|
- _sass/minima/_layout.scss
|