Skip to content

Commit

Permalink
Merge pull request #8 from futurice/improvement/add-github-link
Browse files Browse the repository at this point in the history
Improvement/Add GitHub link
  • Loading branch information
fpapado authored Jan 7, 2019
2 parents 96749fa + e344496 commit 9a6500e
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 5 deletions.
25 changes: 20 additions & 5 deletions src/_includes/layouts/base.njk
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,26 @@
{{ content | safe }}
</main>

<footer class="mt5 flex flex-row flex-wrap justify-between">
<a href="https://www.futurice.com/" class="w4 flex items-center white focus-outline-accent" target="_blank" rel="noopener noreferrer">
{% include "svg/futurice_logo.svg" %}
</a>
{% include "animateMeButton.njk" %}
<footer class="mt5">
<div class="mn2 flex flex-row flex-wrap justify-between items-end">
<p class="ma2 f5 f4-ns vs2">
<span class="db">Made by</span>

<a href="https://www.futurice.com/" class="w4 flex items-center white focus-outline-accent" target="_blank" rel="noopener noreferrer">
{% include "svg/futurice_logo.svg" %}
</a>

<span class="db">
{% Link href='https://github.com/futurice/techweeklies.futurice.com', isExternal=true %}
Source on Github
{% endLink %}
</span>
</p>

<div class="ma2">
{% include "animateMeButton.njk" %}
</div>
</div>
</footer>

<script src="{{ '/js/index.js' | resolveHash | url}}" defer></script>
Expand Down
9 changes: 9 additions & 0 deletions src/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -305,3 +305,12 @@ a[href].tag:visited {
.vs5 > * + * {
margin-top: 4rem;
}

/* Negative margins */
/* These are typically used when defining
* flexbox "gaps" and offseting the space leaking out.
* In the future, consider using the `gap` property!
*/
.mn2 {
margin: -0.5rem;
}

0 comments on commit 9a6500e

Please sign in to comment.