Skip to content

Commit

Permalink
Merge pull request mmistakes#34 from jglovier/styling-fixes
Browse files Browse the repository at this point in the history
Styling fixes
  • Loading branch information
Joel Glovier authored Jun 8, 2017
2 parents ca55496 + 7ce0a68 commit 4b607f4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
12 changes: 6 additions & 6 deletions _layouts/resume.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ <h2>Experience</h2>
{% for job in site.data.experience %}
<div class="resume-item" itemscope itemprop="worksFor" itemtype="http://schema.org/Organization">
<h3 class="resume-item-title" itemprop="name">{{ job.company }}</h3>
<h4 class="resume-item-details" itemprop="description"><span style="display: block; float:left;">{{ job.position }}</span><span style="display: block; float:right;">{{ job.duration }}</span></h4><br/>
<p class="resume-item-copy" style="clear: both;">{{ job.summary }}</p>
<h4 class="resume-item-details" itemprop="description">{{ job.position }} &bull; {{ job.duration }}</h4>
<p class="resume-item-copy">{{ job.summary }}</p>
</div><!-- end of resume-item -->
{% endfor %}

Expand All @@ -75,8 +75,8 @@ <h2>Education</h2>
{% for education in site.data.education %}
<div class="resume-item" itemscope itemprop="worksFor" itemtype="http://schema.org/CollegeOrUniversity">
<h3 class="resume-item-title" itemprop="name">{{ education.uni }}</h3>
<h4 class="resume-item-details" itemprop="description"><span style="display: block; float:left;">{{ education.degree }}</span><span style="display: block; float:right;">{{ education.year }}</span></h4>
<h5 class="resume-item-details" itemprop="description">{{ education.awards }}</h5>
<h4 class="resume-item-details group" itemprop="description">{{ education.degree }} &bull; {{ education.year }}</h4>
<h5 class="resume-item-details award-title" itemprop="description">{{ education.awards }}</h5>
<p class="resume-item-copy">{{ education.summary }}</p>
</div>
{% endfor %}
Expand All @@ -95,8 +95,8 @@ <h2>Projects</h2>
{% for project in site.data.projects %}
<div class="resume-item" itemscope itemprop="worksFor" itemtype="http://schema.org/Organization">
<h3 class="resume-item-title" itemprop="name">{{ project.project }}</h3>
<h4 class="resume-item-details" itemprop="description"><span style="display: block; float:left;">{{ project.role }}</span><span style="display: block; float:right;">{{ project.duration }}</span></h4><br/>
<p class="resume-item-copy" style="clear: both;">{{ project.description }}</p>
<h4 class="resume-item-details" itemprop="description">{{ project.role }} &bull; {{ project.duration }}</h4>
<p class="resume-item-copy">{{ project.description }}</p>
</div>
{% endfor %}

Expand Down
4 changes: 4 additions & 0 deletions _sass/_resume.scss
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,10 @@
font-size: 1.125rem;
margin: 0 0 .75rem;
line-height: 1;

&.award-title {
font-size: 1rem;
}
}

.resume-item-title,
Expand Down

0 comments on commit 4b607f4

Please sign in to comment.