diff --git a/_config.yml b/_config.yml
index c3647b2..6617d9d 100644
--- a/_config.yml
+++ b/_config.yml
@@ -11,4 +11,15 @@ sass:
# Resume settings
resume_name: "Homer J. Simpson"
resume_title: "Nuclear Safety Inspector"
-resume_contact_email: "homerjsimpson@youremailaddress.com"
+resume_contact_email:
+ "homerjsimpson@youremailaddress.com"
+
+# Resume social links
+
+
+# Design settings
+resume_theme: default
+
+# Note: when editing locally, remember to restart
+# your Jekyll server when you edit this file. Changes
+# to _congif.yml are only recognized when the server starts
\ No newline at end of file
diff --git a/_includes/head.html b/_includes/head.html
index e70f3df..2ca8df6 100644
--- a/_includes/head.html
+++ b/_includes/head.html
@@ -4,6 +4,12 @@
{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}
+
+
+ {% if site.resume_theme == 'default' %}
+
+ {% endif %}
+
diff --git a/_layouts/resume.html b/_layouts/resume.html
index 7bcaa1f..6d58922 100644
--- a/_layouts/resume.html
+++ b/_layouts/resume.html
@@ -3,7 +3,7 @@
{% include head.html %}
-
+
@@ -20,9 +20,11 @@
+ {% if site.resume_links %}
+ {% endif %}
diff --git a/_sass/_base.scss b/_sass/_base.scss
index dbee393..b7b2960 100644
--- a/_sass/_base.scss
+++ b/_sass/_base.scss
@@ -11,7 +11,7 @@ html {
}
body{
- @include sans;
+ @include serif;
color: $text_color;
font-size: 16px;
line-height: 1.5;
@@ -21,7 +21,7 @@ body{
.wrapper:after { content:""; display:table; }
.wrapper:after { clear: both; }
.wrapper {
- max-width: 1084px;
+ max-width: 680px;
padding: 0 30px;
margin: 0 auto;
zoom: 1;
diff --git a/_sass/_mixins.scss b/_sass/_mixins.scss
index 7a12363..42dba29 100644
--- a/_sass/_mixins.scss
+++ b/_sass/_mixins.scss
@@ -55,7 +55,7 @@
// type utilities
@mixin sans {
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+ font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@mixin sans_light {
@@ -81,4 +81,18 @@
@mixin sans_extrabold {
@include sans;
font-weight: 800;
+}
+
+@mixin serif {
+ font-family: "Lora", "Minion Pro", Palatino, Georgia, serif;
+}
+
+@mixin serif_regular {
+ @include serif;
+ font-weight: 400;
+}
+
+@mixin serif_bold {
+ @include serif;
+ font-weight: 700;
}
\ No newline at end of file
diff --git a/_sass/_resume.scss b/_sass/_resume.scss
index 5030b92..c6fb51b 100644
--- a/_sass/_resume.scss
+++ b/_sass/_resume.scss
@@ -1,2 +1,61 @@
-// Home styles
-// ---------------------------------------/
\ No newline at end of file
+// Resme styles
+// ---------------------------------------/
+
+// util
+
+.section-header {
+ border-top: 4px solid #c7c7c7;
+ border-bottom: 2px solid #c7c7c7;
+ padding: .5rem 0;
+
+ h2 {
+ @include sans;
+ font-weight: 900;
+ font-size: 1.75rem;
+ letter-spacing: -.05rem;
+ margin: 0;
+ }
+
+}
+
+// page header styles
+
+.page-header {
+ padding: 1.5rem 0;
+
+ .avatar {
+ width: 95px;
+ max-width: 100%;
+ overflow: hidden;
+ @include border-radius(100px);
+ margin: 0 auto;
+ display: block;
+ }
+
+ .header-name {
+ @include sans;
+ font-size: 3rem;
+ font-weight: 900;
+ text-align: center;
+ letter-spacing: -.15rem;
+ line-height: 1;
+ margin: 1rem 0 2rem;
+ }
+
+ .title-bar {
+ border-top: 4px solid #c7c7c7;
+ border-bottom: 2px solid #c7c7c7;
+ padding: .5rem 0;
+
+ .header-title {
+ @include sans;
+ font-weight: 300;
+ font-size: 1.75rem;
+ letter-spacing: -.05rem;
+ margin: 0;
+ }
+ }
+}
+
+
+